- 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.
-
- 04 Tem, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 14 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
ModuleNotFoundError.
-
- 06 May, 2013 1 kayıt (commit)
-
-
Mark Dickinson yazdı
-
- 04 May, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #5845: Enable tab-completion in the interactive interpreter by default, thanks to a new sys.__interactivehook__. (original patch by Éric Araujo)
-
- 14 Nis, 2013 1 kayıt (commit)
-
-
Meador Inge yazdı
This commit fixes a bug in the 'site' module that was causing an exception to incorrectly be thrown when running 'python -S -m site'. The problem was that 'USER_BASE' and 'USER_SITE' were being accessed before they were properly initialized. The code has been changed to use 'getuserbase' and 'getusersitepackages' instead so that the initialization always happens.
-
- 12 Nis, 2013 1 kayıt (commit)
-
-
Roger Serwy yazdı
-
- 12 Şub, 2013 1 kayıt (commit)
-
-
Giampaolo Rodola yazdı
-
- 25 Ock, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
none are explicitly passed in.
-
- 25 Ara, 2012 1 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
- 18 Ara, 2012 1 kayıt (commit)
-
-
Andrew Svetlov yazdı
-
- 23 Kas, 2012 1 kayıt (commit)
-
-
Vinay Sajip yazdı
-
- 18 Kas, 2012 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 05 Eki, 2012 1 kayıt (commit)
-
-
Jesus Cea yazdı
-
- 03 Tem, 2012 1 kayıt (commit)
-
-
Vinay Sajip yazdı
-
- 24 Haz, 2012 1 kayıt (commit)
-
-
Vinay Sajip yazdı
-
- 26 May, 2012 1 kayıt (commit)
-
-
Vinay Sajip yazdı
-
- 14 Nis, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
importlib._bootstrap is now frozen into Python/importlib.h and stored as _frozen_importlib in sys.modules. Py_Initialize() loads the frozen code along with sys and imp and then uses _frozen_importlib._install() to set builtins.__import__() w/ _frozen_importlib.__import__().
-
- 21 Şub, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 05 Şub, 2012 1 kayıt (commit)
-
-
Ned Deily yazdı
-
- 04 Kas, 2011 1 kayıt (commit)
-
-
Florent Xicluna yazdı
-
- 04 May, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
The U flag is no more used (but still accepted for backward compatibility).
-
- 23 Mar, 2011 1 kayıt (commit)
-
-
Éric Araujo yazdı
Original patch by Carl Meyer, review by Brett Cannon, small doc editions by yours truly. Fixes #11591.
-
- 26 Ara, 2010 3 kayıt (commit)
-
-
R. David Murray yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87497 | r.david.murray | 2010-12-26 14:54:29 -0500 (Sun, 26 Dec 2010) | 7 lines #5258/#10642: print fn, line, traceback and continue when .pth file is broken If a .pth file contained an error, it could cause a traceback in site.py, terminating its processing. In 2.7 and 3.2, the interpreter will then not start. Previously, a message would print saying to use -v to get the traceback. In either case, the traceback generated for a failed .pth file did not include the .pth filename, making it difficult to debug the problem. Now site.py reports not only the .pth filename but also the line number causing the error, and just skips the remainder of the file. ........
-
R. David Murray yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87497 | r.david.murray | 2010-12-26 14:54:29 -0500 (Sun, 26 Dec 2010) | 7 lines #5258/#10642: print fn, line, traceback and continue when .pth file is broken If a .pth file contained an error, it could cause a traceback in site.py, terminating its processing. In 2.7 and 3.2, the interpreter will then not start. Previously, a message would print saying to use -v to get the traceback. In either case, the traceback generated for a failed .pth file did not include the .pth filename, making it difficult to debug the problem. Now site.py reports not only the .pth filename but also the line number causing the error, and just skips the remainder of the file. ........
-
R. David Murray yazdı
If a .pth file contained an error, it could cause a traceback in site.py, terminating its processing. In 2.7 and 3.2, the interpreter will then not start. Previously, a message would print saying to use -v to get the traceback. In either case, the traceback generated for a failed .pth file did not include the .pth filename, making it difficult to debug the problem. Now site.py reports not only the .pth filename but also the line number causing the error, and just skips the remainder of the file.
-
- 12 Eki, 2010 3 kayıt (commit)
-
-
Victor Stinner yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85386 | victor.stinner | 2010-10-13 00:23:23 +0200 (mer., 13 oct. 2010) | 3 lines Issue #6612: Fix site and sysconfig to catch os.getcwd() error, eg. if the current directory was deleted. ........ r85387 | victor.stinner | 2010-10-13 00:26:08 +0200 (mer., 13 oct. 2010) | 2 lines #6612: add the author of the patch (W. Trevor King) ........ r85389 | victor.stinner | 2010-10-13 00:42:37 +0200 (mer., 13 oct. 2010) | 2 lines NEWS: Move #6612 to Library section ........
-
Victor Stinner yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85386 | victor.stinner | 2010-10-13 00:23:23 +0200 (mer., 13 oct. 2010) | 3 lines Issue #6612: Fix site and sysconfig to catch os.getcwd() error, eg. if the current directory was deleted. ........ r85387 | victor.stinner | 2010-10-13 00:26:08 +0200 (mer., 13 oct. 2010) | 2 lines #6612: add the author of the patch (W. Trevor King) ........ r85389 | victor.stinner | 2010-10-13 00:42:37 +0200 (mer., 13 oct. 2010) | 2 lines NEWS: Move #6612 to Library section ........
-
Victor Stinner yazdı
current directory was deleted.
-
- 01 Eyl, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
are now removed, since their effect was inexistent in 3.x (the default encoding is hardcoded to utf-8 and cannot be changed).
-
- 13 Agu, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
at interpreter startup before importing any non-builtin modules. Should fix #9589.
-
- 01 Agu, 2010 1 kayıt (commit)
-
-
Ronald Oussoren yazdı
-
- 27 Haz, 2010 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r81465 | georg.brandl | 2010-05-22 06:29:19 -0500 (Sat, 22 May 2010) | 2 lines Issue #3924: Ignore cookies with invalid "version" field in cookielib. ........ r81466 | georg.brandl | 2010-05-22 06:31:16 -0500 (Sat, 22 May 2010) | 1 line Underscore the name of an internal utility function. ........ r81468 | georg.brandl | 2010-05-22 06:43:25 -0500 (Sat, 22 May 2010) | 1 line #8635: document enumerate() start parameter in docstring. ........ r81679 | benjamin.peterson | 2010-06-03 16:21:03 -0500 (Thu, 03 Jun 2010) | 1 line use a set for membership testing ........ r81735 | michael.foord | 2010-06-05 06:46:59 -0500 (Sat, 05 Jun 2010) | 1 line Extract error message truncating into a method (unittest.TestCase._truncateMessage). ........ r81760 | michael.foord | 2010-06-05 14:38:42 -0500 (Sat, 05 Jun 2010) | 1 line Issue 8302. SkipTest exception is setUpClass or setUpModule is now reported as a skip rather than an error. ........ r81868 | benjamin.peterson | 2010-06-09 14:45:04 -0500 (Wed, 09 Jun 2010) | 1 line fix code formatting ........ r82183 | benjamin.peterson | 2010-06-23 15:29:26 -0500 (Wed, 23 Jun 2010) | 1 line cpython only gc tests ........
-
- 03 Haz, 2010 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 08 May, 2010 2 kayıt (commit)
-
-
Ronald Oussoren yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80967 | ronald.oussoren | 2010-05-08 12:29:06 +0200 (Sat, 08 May 2010) | 4 lines Issue #8084: ensure that the --user directory conforms to platforms standars on OSX when using a python framework. ........
-
Ronald Oussoren yazdı
conforms to platforms standars on OSX when using a python framework.
-
- 17 Nis, 2010 1 kayıt (commit)
-
-
Barry Warsaw yazdı
-
- 12 Nis, 2010 1 kayıt (commit)
-
-
Brian Curtin yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80022 | brian.curtin | 2010-04-12 18:30:49 -0500 (Mon, 12 Apr 2010) | 2 lines Fix #8364. Update the setquit docstring and change a built-in to builtin. ........
-