- 29 May, 2014 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 12 May, 2014 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 04 Nis, 2014 1 kayıt (commit)
-
-
Brett Cannon yazdı
__file__. This causes _frozen_importlib to no longer have __file__ set as well as any frozen module imported using imp.init_frozen() (which is deprecated).
-
- 10 Şub, 2014 4 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Remove unused variables.
-
Serhiy Storchaka yazdı
Remove unused variables.
-
Serhiy Storchaka yazdı
cleaning other modules. The sys and builtins modules are cleaned last.
-
Serhiy Storchaka yazdı
cleaning other modules. The sys and builtins modules are cleaned last.
-
- 09 Şub, 2014 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Larry Hastings yazdı
The new syntax is highly human readable while still preventing false positives. The syntax also extends Python syntax to denote "self" and positional-only parameters, allowing inspect.Signature objects to be totally accurate for all supported builtins in Python 3.4.
-
- 01 Şub, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
including correctly generating code for Clinic blocks inside C preprocessor conditional blocks.
-
- 28 Ock, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
annotate text signatures in docstrings, resulting in fewer false positives. "self" parameters are also explicitly marked, allowing inspect.Signature() to authoritatively detect (and skip) said parameters. Issue #20326: Argument Clinic now generates separate checksums for the input and output sections of the block, allowing external tools to verify that the input has not changed (and thus the output is not out-of-date).
-
- 24 Ock, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
PyMethodDescr_Type, _PyMethodWrapper_Type, and PyWrapperDescr_Type) have been modified to provide introspection information for builtins. Also: many additional Lib, test suite, and Argument Clinic fixes.
-
- 18 Ock, 2014 1 kayıt (commit)
-
-
Larry Hastings yazdı
delaying its output or even redirecting it to a separate file.
-
- 10 Ock, 2014 2 kayıt (commit)
-
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
- 22 Kas, 2013 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 14 Kas, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
failure
-
- 13 Kas, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
PyUnicode_Substring() failure (ex: MemoryError)
-
- 07 Kas, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
are used. Move also _Py_IDENTIFIER() defintions to the top in modified files to remove identifiers duplicated in the same file.
-
- 06 Kas, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 19 Eki, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 27 Agu, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
-
- 22 Agu, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 10 Agu, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Patch by Neil Schemenauer, minimally modified. (re-apply after fix for tkinter-related crash)
-
- 06 Agu, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 02 Agu, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Backout 62658d9d8926 (issue #10241): it causes a crash at shutdown when deallocating a Tkapp object.
-
- 01 Agu, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Patch by Neil Schemenauer, minimally modified.
-
- 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.
-
- 20 Tem, 2013 1 kayıt (commit)
-
-
Christian Heimes yazdı
CID 486649
-
- 16 Tem, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 04 Tem, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 23 Haz, 2013 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 13 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
Forgot to raise ModuleNotFoundError when None is found in sys.modules. This led to introducing the C function PyErr_SetImportErrorSubclass() to make setting ModuleNotFoundError easier. Also updated the reference docs to mention ModuleNotFoundError appropriately. Updated the docs for ModuleNotFoundError to mention the None in sys.modules case. Lastly, it was noticed that PyErr_SetImportError() was not setting an exception when returning None in one case. That issue is now fixed.
-
- 01 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
Previously __path__ was set to [__name__], but that could lead to bad results if someone managed to circumvent the frozen importer and somehow ended up with a finder that thought __name__ was a legit directory/location.
-
- 18 May, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 08 May, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
(should fix Windows buildbot failures on test_gc)
-
- 06 May, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 02 May, 2013 1 kayıt (commit)
-
-
Alexandre Vassalotti yazdı
-
- 29 Nis, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
raise an ImportError (rather than fatal) when __import__ is not found in __builtins__ (closes #17867)
-
- 19 Mar, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-