[Python-checkins] r63311 - in python/trunk/Misc/TextMate/Python-Dev.tmbundle: Snippets Snippets/2 to 3 - Module Deletion (docs).tmSnippet info.plist

brett.cannon python-checkins at python.org
Thu May 15 06:36:54 CEST 2008


Author: brett.cannon
Date: Thu May 15 06:36:53 2008
New Revision: 63311

Log:
Add a snippet for the deprecation directive for docs.


Added:
   python/trunk/Misc/TextMate/Python-Dev.tmbundle/Snippets/
   python/trunk/Misc/TextMate/Python-Dev.tmbundle/Snippets/2 to 3 - Module Deletion (docs).tmSnippet
Modified:
   python/trunk/Misc/TextMate/Python-Dev.tmbundle/info.plist

Added: python/trunk/Misc/TextMate/Python-Dev.tmbundle/Snippets/2 to 3 - Module Deletion (docs).tmSnippet
==============================================================================
--- (empty file)
+++ python/trunk/Misc/TextMate/Python-Dev.tmbundle/Snippets/2 to 3 - Module Deletion (docs).tmSnippet	Thu May 15 06:36:53 2008
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+	<key>content</key>
+	<string>.. deprecated:: 2.6
+   The :mod:\`${1}\` module has been deprecated for removal in Python 3.0.
+${0}</string>
+	<key>name</key>
+	<string>2 to 3 - Module Deletion (docs)</string>
+	<key>tabTrigger</key>
+	<string>2to3docdel</string>
+	<key>uuid</key>
+	<string>0568410D-EAF1-4AF3-B6DE-8AF133A91821</string>
+</dict>
+</plist>

Modified: python/trunk/Misc/TextMate/Python-Dev.tmbundle/info.plist
==============================================================================
--- python/trunk/Misc/TextMate/Python-Dev.tmbundle/info.plist	(original)
+++ python/trunk/Misc/TextMate/Python-Dev.tmbundle/info.plist	Thu May 15 06:36:53 2008
@@ -7,6 +7,7 @@
 		<key>items</key>
 		<array>
 			<string>9519C22B-6AB8-41A1-94F6-079E0B45C147</string>
+			<string>0568410D-EAF1-4AF3-B6DE-8AF133A91821</string>
 			<string>------------------------------------</string>
 			<string>B545BB1B-A8E1-426C-B50A-426E78B96D38</string>
 			<string>6EF151E5-7149-4F82-8796-0CC40FE589FA</string>
@@ -23,6 +24,7 @@
 	<key>ordering</key>
 	<array>
 		<string>9519C22B-6AB8-41A1-94F6-079E0B45C147</string>
+		<string>0568410D-EAF1-4AF3-B6DE-8AF133A91821</string>
 		<string>B545BB1B-A8E1-426C-B50A-426E78B96D38</string>
 		<string>6EF151E5-7149-4F82-8796-0CC40FE589FA</string>
 		<string>FD25A8DC-22DC-4ED4-B222-B943C8A9117D</string>


More information about the Python-checkins mailing list