]> granicus.if.org Git - python/commitdiff
#7794: describe 3.1 support for executing directories and zip archives
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 22 Feb 2010 15:19:05 +0000 (15:19 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 22 Feb 2010 15:19:05 +0000 (15:19 +0000)
Doc/whatsnew/3.1.rst

index 2179bf7f6f7e7670c0c9e66757e3954696da134d..b4f95a7c8601b5c284486f8f149465665aa3b258 100644 (file)
@@ -141,6 +141,12 @@ Other Language Changes
 
 Some smaller changes made to the core Python language are:
 
+* Directories and zip archives containing a :file:`__main__.py`
+  file can now be executed directly by passing their name to the
+  interpreter. The directory/zipfile is automatically inserted as the
+  first entry in sys.path.  (Suggestion and initial patch by Andy Chu;
+  revised patch by Phillip J. Eby and Nick Coghlan; :issue:`1739468`.)
+
 * The :func:`int` type gained a ``bit_length`` method that returns the
   number of bits necessary to represent its argument in binary::