| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #5845: In site.py, only load readline history from ~/.python_history if... | Antoine Pitrou | 2013-09-29 | 1 | -6/+13 |
|
|
* | #18206: Re-fix license URL. | R David Murray | 2013-09-14 | 1 | -1/+2 |
|
|
* | #18852: Handle readline.__doc__ being None in site.py readline activation. | R David Murray | 2013-09-06 | 1 | -2/+3 |
|
|
* | Issue #18621: Prevent the site module's patched builtins from keeping too man... | Antoine Pitrou | 2013-08-06 | 1 | -93/+8 |
|
|
* | Remove Lib/site.py hack to unregister patched builtins. | Antoine Pitrou | 2013-08-01 | 1 | -29/+10 |
|
|
* | Issue #18214: Improve finalization of Python modules to avoid setting their g... | Antoine Pitrou | 2013-07-31 | 1 | -10/+29 |
|
|
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) | Brett Cannon | 2013-07-04 | 1 | -3/+3 |
|
|
* | Issue #18200: Update the stdlib (except tests) to use | Brett Cannon | 2013-06-14 | 1 | -3/+3 |
|
|
* | Issue #5845: avoid an exception at startup on OS X if no .editrc file exists. | Mark Dickinson | 2013-05-06 | 1 | -1/+9 |
|
|
* | Issue #5845: Enable tab-completion in the interactive interpreter by default,... | Antoine Pitrou | 2013-05-04 | 1 | -2/+40 |
|
|
* | Issue #16804: Fix 'python -S -m site' failure. | Meador Inge | 2013-04-14 | 1 | -4/+6 |
|\ |
|
| * | Issue #16804: Fix 'python -S -m site' failure. | Meador Inge | 2013-04-14 | 1 | -4/+6 |
|
|
* | | #17585: merge with 3.3. | Roger Serwy | 2013-04-12 | 1 | -6/+1 |
|\ \
| |/ |
|
| * | #17585: Fixed IDLE regression. Now closes when using exit() or quit(). | Roger Serwy | 2013-04-12 | 1 | -6/+1 |
|
|
* | | modernize some modules' code by using with statement around open() | Giampaolo Rodola' | 2013-02-12 | 1 | -3/+2 |
|
|
* | | Issue #16972: Have site.addpackage() consider known paths even when | Brett Cannon | 2013-01-25 | 1 | -1/+1 |
|
|
* | | Replace IOError with OSError (#16715) | Andrew Svetlov | 2012-12-25 | 1 | -2/+2 |
|
|
* | | Issue #16706: get rid of os.error | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
|
|
* | | Closes #16519: Merged fix from 3.3. | Vinay Sajip | 2012-11-23 | 1 | -5/+3 |
|\ \
| |/ |
|
| * | Issue #16519: Used os.path.abspath, removed unnecessary code for executable_n... | Vinay Sajip | 2012-11-23 | 1 | -5/+3 |
|
|
* | | Remove sys.platform == 'riscos' checks from some Python and test files. #16501 | Christian Heimes | 2012-11-18 | 1 | -3/+1 |
|
|
* | | #16135: Removal of OS/2 support (Python code partial cleanup) | Jesus Cea | 2012-10-05 | 1 | -20/+1 |
|/ |
|
* | Issue 15241: Improved site.py documentation relating to venvs. | Vinay Sajip | 2012-07-03 | 1 | -2/+2 |
|
|
* | Closes #15173: Tidied up copyright statements and removed pythonv references. | Vinay Sajip | 2012-06-24 | 1 | -2/+2 |
|
|
* | Implemented PEP 405 (Python virtual environments). | Vinay Sajip | 2012-05-26 | 1 | -7/+81 |
|
|
* | Issue #2377: Make importlib the implementation of __import__(). | Brett Cannon | 2012-04-14 | 1 | -1/+2 |
|
|
* | site: don't import traceback at startup to speed up Python startup | Victor Stinner | 2012-02-21 | 1 | -1/+1 |
|
|
* | Remove redundant imports. | Florent Xicluna | 2011-11-04 | 1 | -2/+1 |
|
|
* | Replace open(filename, 'rU') by open(filename, 'r') | Victor Stinner | 2011-05-04 | 1 | -2/+2 |
|
|
* | Do not touch sys.path when site is imported and python was started with -S. | Éric Araujo | 2011-03-23 | 1 | -1/+9 |
|
|
* | #5258/#10642: print fn, line, traceback and continue when .pth file is broken | R. David Murray | 2010-12-26 | 1 | -9/+19 |
|
|
* | Issue #6612: Fix site and sysconfig to catch os.getcwd() error, eg. if the | Victor Stinner | 2010-10-12 | 1 | -3/+7 |
|
|
* | Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding() | Antoine Pitrou | 2010-09-01 | 1 | -25/+0 |
|
|
* | Reimplement addbuilddir() in C inside getpath.c, so as to execute it | Antoine Pitrou | 2010-08-13 | 1 | -15/+0 |
|
|
* | Ensure that test_site actually passes with a framework build | Ronald Oussoren | 2010-08-01 | 1 | -1/+1 |
|
|
* | Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge... | Benjamin Peterson | 2010-06-27 | 1 | -2/+2 |
|
|
* | Merged revisions 80967 via svnmerge from | Ronald Oussoren | 2010-05-08 | 1 | -6/+11 |
|
|
* | PEP 3147 | Barry Warsaw | 2010-04-17 | 1 | -4/+8 |
|
|
* | Merged revisions 80022 via svnmerge from | Brian Curtin | 2010-04-12 | 1 | -3/+5 |
|
|
* | Merged revisions 79297,79310,79382,79425-79427,79450 via svnmerge from | Florent Xicluna | 2010-03-28 | 1 | -1/+1 |
|
|
* | Merged revisions 78826 via svnmerge from | Victor Stinner | 2010-03-12 | 1 | -5/+14 |
|
|
* | Merged revisions 77704,77752 via svnmerge from | Tarek Ziadé | 2010-01-29 | 1 | -21/+6 |
|
|
* | Merged revisions 74526 via svnmerge from | Tarek Ziadé | 2009-08-20 | 1 | -36/+66 |
|
|
* | Merged revisions 70778 via svnmerge from | Ronald Oussoren | 2009-03-30 | 1 | -2/+4 |
|
|
* | Merged revisions 62954-62959,62961,62963-62967,62969-62970,62972-62973,62975-... | Alexandre Vassalotti | 2008-05-15 | 1 | -1/+1 |
|
|
* | Merged revisions 62914-62916,62918-62919,62921-62922,62924-62942,62944-62945,... | Alexandre Vassalotti | 2008-05-15 | 1 | -1/+1 |
|
|
* | Merged revisions 62774-62775,62785,62787-62788 via svnmerge from | Christian Heimes | 2008-05-06 | 1 | -48/+184 |
|
|
* | Merged revisions 60176-60209 via svnmerge from | Christian Heimes | 2008-01-23 | 1 | -0/+2 |
|
|
* | Remove several mentions of old Python versions that don't apply anymore. | Georg Brandl | 2008-01-05 | 1 | -6/+0 |
|
|
* | Don't close sys.stdin with quit() if sys.stdin wraps fd 0. Otherwise it will ... | Christian Heimes | 2007-12-31 | 1 | -1/+6 |
|
|