summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2010-02-22 15:24:43 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2010-02-22 15:24:43 (GMT)
commit7718e5e220c7b226eb62556ec0c4f3dbdaa75e99 (patch)
treecca6b9a6a5b580eb7140cf1cb2677bec07d22903 /Doc/whatsnew
parentfbd9d2fb1049f6870505c8fa8c4ed56dad9e572e (diff)
downloadcpython-7718e5e220c7b226eb62556ec0c4f3dbdaa75e99.zip
cpython-7718e5e220c7b226eb62556ec0c4f3dbdaa75e99.tar.gz
cpython-7718e5e220c7b226eb62556ec0c4f3dbdaa75e99.tar.bz2
#7794: describe 3.1 support for executing directories and zip archives
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.1.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.1.rst b/Doc/whatsnew/3.1.rst
index f51c4ee..6ff04ed 100644
--- a/Doc/whatsnew/3.1.rst
+++ b/Doc/whatsnew/3.1.rst
@@ -119,6 +119,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::