summaryrefslogtreecommitdiffstats
path: root/Lib/site.py
Commit message (Expand)AuthorAgeFilesLines
* gh-102038: Skip a sometimes unnecessary stat in site.py (#102039)Shantanu2023-04-021-9/+12
* gh-102799: use exception instance instead of sys.exc_info() (#102885)Irit Katriel2023-03-311-2/+2
* gh-99482: remove `jython` compatibility parts from stdlib and tests (#99484)Nikita Sobolev2022-12-231-6/+1
* gh-90473: disable user site packages on WASI/Emscripten (GH-93633)Christian Heimes2022-06-091-2/+2
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-031-8/+5
* bpo-45020: Default to using frozen modules unless running from source tree. (...Eric Snow2021-10-161-1/+3
* bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)Inada Naoki2021-03-291-1/+3
* bpo-31904: Fix site and sysconfig modules for VxWorks RTOS (GH-21821)pxinwr2020-12-201-7/+17
* bpo-42133: update parts of the stdlib to fall back to `__spec__.loader` when ...Brett Cannon2020-11-071-2/+9
* bpo-33689: Blank lines in .pth file cause a duplicate sys.path entry (GH-20679)idomic2020-09-191-0/+2
* bpo-41627: Distinguish 32 and 64-bit user site packages on Windows (GH-22098)Steve Dower2020-09-041-1/+2
* bpo-41193: Ignore OSError in readline write_history() (GH-21279)Victor Stinner2020-07-021-3/+3
* bpo-33944: site: Add site-packages tracing in verbose mode (GH-12110)native-api2020-06-121-0/+9
* bpo-1294959: Add sys.platlibdir attribute (GH-18381)Victor Stinner2020-03-101-4/+13
* Fix typo in site module (GH-17597)Daniel Andersson2019-12-141-1/+1
* bpo-37369: Fix initialization of sys members when launched via an app contain...Steve Dower2019-06-291-7/+0
* bpo-37364: Use io.open_code() to read .pth files (GH-14299)Steve Dower2019-06-211-1/+2
* bpo-35872 and bpo-35873: Clears __PYVENV_LAUNCHER__ variable (GH-11745)Steve Dower2019-02-041-1/+8
* bpo-19891: Ignore error while writing history file (GH-8483)Anthony Sottile2018-08-061-1/+10
* bpo-30167: Prevent site.main() exception if PYTHONSTARTUP is set. (GH-6731)Steve Weber2018-06-111-2/+2
* bpo-28440: Don't add /Library/Python/3.x/site-packages to sys.path (#5445)Ned Deily2018-01-301-5/+0
* bpo-30804: fix macOS build with framework enabled. (#2516)INADA Naoki2017-06-301-2/+2
* bpo-29585: Define PYTHONFRAMEWORK in PC/pyconfig.h (#2477)Victor Stinner2017-06-281-1/+1
* bpo-29585: optimize site.py startup time (GH-136)INADA Naoki2017-06-281-26/+52
* bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)Serhiy Storchaka2017-04-161-1/+1
* bpo-29592: site: skip abs_paths() when it's redundant (GH-167)INADA Naoki2017-03-141-1/+6
* Issue #28637: No longer use re in site.py.Serhiy Storchaka2016-11-081-9/+4
* Issue #28323: Remove vestigal MacOS 9 checks from exit() and quit().Ned Deily2016-10-021-3/+1
* Issue #28192: Don't import readline in isolated modeSteve Dower2016-09-171-5/+7
* Changes pyvenv.cfg trick into an actual sys.path file.Steve Dower2016-09-091-6/+0
* Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec ...Steve Dower2016-09-071-16/+0
* Issue #27171: Merge typo fixes from 3.5Martin Panter2016-06-021-2/+2
|\
| * Issue #27171: Fix typos in documentation, comments, and test function namesMartin Panter2016-06-021-2/+2
* | Issue #26587: Allow .pth files to specify file paths as well asBrett Cannon2016-04-081-9/+9
* | Revert back to 3.6.0, buildbots do not want chocolate for 04-01Ned Deily2016-03-311-56/+0
* | Python 8: no pep8, no chocolate!Victor Stinner2016-03-311-0/+56
* | Issue #25985: sys.version_info is now used instead of sys.versionSerhiy Storchaka2016-02-111-2/+2
* | site: error on sitecustomize import errorVictor Stinner2016-01-221-6/+14
|/
* Closes #25185: merged fix from 3.4.Vinay Sajip2015-10-011-1/+3
|\
| * Closes #25185: Use UTF-8 encoding when reading pyvenv.cfg.Vinay Sajip2015-10-011-1/+3
* | 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-031-2/+2
* | merge 3.4Benjamin Peterson2015-02-021-1/+1
|\ \ | |/
| * https goodnessBenjamin Peterson2015-02-021-1/+1
* | Issue #21711: support for "site-python" directories has now been removed from...Antoine Pitrou2014-06-121-11/+4
|/
* Issue #21572: Change license command to fallback to generic license URL.Ned Deily2014-05-311-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-111-1/+1