summaryrefslogtreecommitdiff
path: root/Lib/site.py
Commit message (Expand)AuthorAgeFilesLines
* Fixes sys.path for applocal environments.Steve Dower2015-07-171-0/+6
* Issue #23911: Move path-based bootstrap code to a separate frozen module.Eric Snow2015-05-021-2/+2
* merge 3.4Benjamin Peterson2015-02-011-11/+4
|\
| * Issue #21711: support for "site-python" directories has now been removed from...Antoine Pitrou2014-06-121-11/+4
* | https goodnessBenjamin Peterson2015-02-011-1/+1
|/
* Issue #21572: Change license command to fallback to generic license URL.Ned Deily2014-05-301-1/+1
* Issue #16047: Fix module exception list and __file__ handling in freeze.Martin v. L?wis2014-03-301-3/+8
* Issue #20411: Use readline.get_current_history_length to check for the presen...Jason R. Coombs2014-01-281-1/+1
* Issue #19375: The site module adding a "site-python" directory to sys.path, i...Antoine Pitrou2013-10-251-0/+5
* Issue #19205 fix 406529adf156Christian Heimes2013-10-121-1/+1
* Issue #19205: Don't import the 're' module in site and sysconfig module toChristian Heimes2013-10-121-3/+3
* Issue #9548: Add a minimal "_bootlocale" module that is imported by the _io m...Antoine Pitrou2013-10-121-2/+2
* Issue #5845: In site.py, only load readline history from ~/.python_history if...Antoine Pitrou2013-09-291-6/+13
* #18206: Re-fix license URL.R David Murray2013-09-141-1/+2
* #18852: Handle readline.__doc__ being None in site.py readline activation.R David Murray2013-09-061-2/+3
* Issue #18621: Prevent the site module's patched builtins from keeping too man...Antoine Pitrou2013-08-061-93/+8
* Remove Lib/site.py hack to unregister patched builtins.Antoine Pitrou2013-08-011-29/+10
* Issue #18214: Improve finalization of Python modules to avoid setting their g...Antoine Pitrou2013-07-311-10/+29
* Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-3/+3
* Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-3/+3
* Issue #5845: avoid an exception at startup on OS X if no .editrc file exists.Mark Dickinson2013-05-061-1/+9
* Issue #5845: Enable tab-completion in the interactive interpreter by default,...Antoine Pitrou2013-05-041-2/+40
* Issue #16804: Fix 'python -S -m site' failure.Meador Inge2013-04-131-29/+7
|\
| * #17585: merge with 3.3.Roger Serwy2013-04-111-29/+7
| |\
| | * modernize some modules' code by using with statement around open()Giampaolo Rodola'2013-02-121-3/+2
| | * Issue #16972: Have site.addpackage() consider known paths even whenBrett Cannon2013-01-251-1/+1
| | * Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-2/+2
| | * Issue #16706: get rid of os.errorAndrew Svetlov2012-12-181-1/+1
| | * Closes #16519: Merged fix from 3.3.Vinay Sajip2012-11-231-22/+1
| | |\
| | | * Remove sys.platform == 'riscos' checks from some Python and test files. #16501Christian Heimes2012-11-191-3/+1
| | | * #16135: Removal of OS/2 support (Python code partial cleanup)Jesus Cea2012-10-051-20/+1
* | | | Issue #16804: Fix 'python -S -m site' failure.Meador Inge2013-04-131-4/+6
|/ / /
* | | #17585: Fixed IDLE regression. Now closes when using exit() or quit().Roger Serwy2013-04-111-6/+1
|/ /
* | Issue #16519: Used os.path.abspath, removed unnecessary code for executable_n...Vinay Sajip2012-11-231-5/+3
|/
* Issue 15241: Improved site.py documentation relating to venvs.Vinay Sajip2012-07-031-2/+2
* Closes #15173: Tidied up copyright statements and removed pythonv references.Vinay Sajip2012-06-251-2/+2
* Implemented PEP 405 (Python virtual environments).Vinay Sajip2012-05-261-7/+81
* Issue #2377: Make importlib the implementation of __import__().Brett Cannon2012-04-141-1/+2
* site: don't import traceback at startup to speed up Python startupVictor Stinner2012-02-211-1/+1
* Remove redundant imports.Florent Xicluna2011-11-041-2/+1
* Replace open(filename, 'rU') by open(filename, 'r')Victor Stinner2011-05-041-2/+2
* Do not touch sys.path when site is imported and python was started with -S.Éric Araujo2011-03-231-1/+9
* #5258/#10642: print fn, line, traceback and continue when .pth file is brokenR. David Murray2010-12-261-9/+19
* Issue #6612: Fix site and sysconfig to catch os.getcwd() error, eg. if theVictor Stinner2010-10-121-3/+7
* Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding()Antoine Pitrou2010-09-011-25/+0
* Reimplement addbuilddir() in C inside getpath.c, so as to execute itAntoine Pitrou2010-08-131-15/+0
* Ensure that test_site actually passes with a framework buildRonald Oussoren2010-08-011-1/+1
* Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge...Benjamin Peterson2010-06-271-2/+2
* Merged revisions 80967 via svnmerge fromRonald Oussoren2010-05-081-6/+11
* PEP 3147Barry Warsaw2010-04-171-4/+8