- 04 Şub, 2019 1 kayıt (commit)
-
-
Steve Dower yazdı
After reading __PYVENV_LAUNCHER__ we now set sys._base_executable value for later use. Make the same changes for macOS to avoid extra platform checks.
-
- 06 Agu, 2018 1 kayıt (commit)
-
-
Anthony Sottile yazdı
-
- 11 Haz, 2018 1 kayıt (commit)
-
-
Steve Weber yazdı
Before Python 3.6, os.path.abspath(None) used to report an AttributeError which was properly caught inside site.abs_paths, making it ignore __main__, one of sys.modules, which has __file__ and __cached__ set to None. With 3.6, os.path.abspath(None) raises TypeError instead which site.abs_path was not expecting. This resulted in an uncaught exception if a user had PYTHONSTARTUP set and the application called site.main() which a number of third-party programs do.
-
- 30 Ock, 2018 1 kayıt (commit)
-
-
Ned Deily yazdı
No longer add /Library/Python/3.x/site-packages, the Apple-supplied system Python site-packages directory, to sys.path for macOS framework builds in case Apple ships a version of Python 3. A similar change was made earlier to Python 2.7 where it was found that the coupling between the system Python and a user-installed framework Python often caused confusion or pip install failures.
-
- 30 Haz, 2017 1 kayıt (commit)
-
-
INADA Naoki yazdı
-
- 28 Haz, 2017 2 kayıt (commit)
-
-
Victor Stinner yazdı
* bpo-29585: Fix PC/pyconfig.h whitespaces Run "make patchcheck". * bpo-29585: Define PYTHONFRAMEWORK in PC/pyconfig.h * site: Fix path separator in _get_path() on Windows
-
INADA Naoki yazdı
Avoid importing `sysconfig` from `site` by copying minimum code. Python startup is 5% faster on Linux and 30% faster on macOS
-
- 16 Nis, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 14 Mar, 2017 1 kayıt (commit)
-
-
INADA Naoki yazdı
Call abs_paths() only if removeduppaths() changed sys.path
-
- 08 Kas, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
This makes Python startup from a virtual environment a little faster.
-
- 02 Eki, 2016 1 kayıt (commit)
-
-
Ned Deily yazdı
Patch by Chi Hsuan Yen.
-
- 17 Eyl, 2016 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 09 Eyl, 2016 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 07 Eyl, 2016 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 02 Haz, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 08 Nis, 2016 1 kayıt (commit)
-
-
Brett Cannon yazdı
directories. Thanks to Wolfgang Langner for the bug report and initial version of the patch.
-
- 31 Mar, 2016 2 kayıt (commit)
-
-
Ned Deily yazdı
-
Victor Stinner yazdı
-
- 11 Şub, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
to format short Python version.
-
- 22 Ock, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #26099: The site module now writes an error into stderr if sitecustomize module can be imported but executing the module raise an ImportError. Same change for usercustomize.
-
- 01 Eki, 2015 1 kayıt (commit)
-
-
Vinay Sajip yazdı
-
- 17 Tem, 2015 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 03 May, 2015 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 02 Şub, 2015 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 12 Haz, 2014 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #21711: support for "site-python" directories has now been removed from the site module (it was deprecated in 3.4).
-
- 31 May, 2014 1 kayıt (commit)
-
-
Ned Deily yazdı
-
- 30 Mar, 2014 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Patch by Meador Inge.
-
- 28 Ock, 2014 1 kayıt (commit)
-
-
Jason R. Coombs yazdı
Issue #20411: Use readline.get_current_history_length to check for the presence of a history, rather than get_history_item, which assumes a history is present.
-
- 25 Eki, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #19375: The site module adding a "site-python" directory to sys.path, if it exists, is now deprecated.
-
- 11 Eki, 2013 3 kayıt (commit)
-
-
Christian Heimes yazdı
I forgot to hit save.
-
Christian Heimes yazdı
to speed up interpreter start.
-
Antoine Pitrou yazdı
Issue #9548: Add a minimal "_bootlocale" module that is imported by the _io module instead of the full locale module.
-
- 29 Eyl, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #5845: In site.py, only load readline history from ~/.python_history if no history has been read already. This avoids double writes to the history file at shutdown.
-
- 14 Eyl, 2013 1 kayıt (commit)
-
-
R David Murray yazdı
-
- 07 Eyl, 2013 2 kayıt (commit)
-
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
Fixes issue #18206 Patch contributed by Berker Peksag and py.user
-
- 06 Eyl, 2013 1 kayıt (commit)
-
-
R David Murray yazdı
Patch by Berker Peksag.
-
- 06 Agu, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #18621: Prevent the site module's patched builtins from keeping too many references alive for too long.
-
- 01 Agu, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
It creates a refleak in subinterpreters, as atexit callbacks aren't triggered at their end.
-
- 31 Tem, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #18214: Improve finalization of Python modules to avoid setting their globals to None, in most cases.
-