diff options
author | Brett Cannon <brett@python.org> | 2014-02-06 14:22:51 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2014-02-06 14:22:51 (GMT) |
commit | f811bbfe6c41d90dd1ad1c68d05a84541ecdf162 (patch) | |
tree | 8870590cb4f214755b82d3bf3fac513078073793 /Misc/NEWS | |
parent | 94e44a935b3dc1e67a6a3357f64324ee0c81d40c (diff) | |
download | cpython-f811bbfe6c41d90dd1ad1c68d05a84541ecdf162.zip cpython-f811bbfe6c41d90dd1ad1c68d05a84541ecdf162.tar.gz cpython-f811bbfe6c41d90dd1ad1c68d05a84541ecdf162.tar.bz2 |
Issue #6386: When executing a script that's a symlink, the directory
where the symlink resolves to is added to sys.path, not the directory
containing the symlink itself.
Thanks to Sanko Resic for an initial attempt at the patch.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -163,6 +163,13 @@ Build - Issue #20465: Update SQLite shipped with OS X installer to 3.8.3. +Documentation +------------- + +- Issue #6386: Clarify in the tutorial that specifying a symlink to execute + means the directory containing the executed script and not the symlink is + added to sys.path. + What's New in Python 3.4.0 Beta 3? ================================== |