- 18 Mar, 2015 24 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
broken after converting instance attributes to properies in issue #2211.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
available, syscall introduced in the Linux kernel 3.17. It is more reliable and more secure, because it avoids the need of a file descriptor and waits until the kernel has enough entropy.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Use a Python source file (linecache.__file__) instead of /etc/passwd. Modify also linecache docstrings to clarify the linecache is written to cache Python source files, not any text files.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
source files, even if "it works" with other text files encoded to UTF-8.
-
Victor Stinner yazdı
Use None as a sentinel to stop a worker.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
PyMarshal_ReadShortFromFile() can fail.
-
Victor Stinner yazdı
Detect also earlier PyMarshal_Read*() errors in zipimport.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
the caller can replace the directory with a different file kind. The bottom-up way, os.walk(topdown=False), still uses entry.is_symlink(), and so can be faster than Python 3.4.
-
Victor Stinner yazdı
Retry open()/fopen() if it fails with EINTR and the Python signal handler doesn't raise an exception.
-
Serhiy Storchaka yazdı
Setting attributes key, value and coded_value directly now is deprecated. update() and setdefault() now transform and check keys. Comparing for equality now takes into account attributes key, value and coded_value. copy() now returns a Morsel, not a dict. repr() now contains all attributes. Optimized checking keys and quoting values. Added new tests. Original patch by Demian Brecht.
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Victor Stinner yazdı
* If fopen() fails, OSError is raised with the original filename object. * The GIL is now released while calling fopen()
-
- 17 Mar, 2015 10 kayıt (commit)
-
-
Victor Stinner yazdı
* _Py_open() now raises exceptions on error. If open() fails, it raises an OSError with the filename. * _Py_open() now releases the GIL while calling open() * Add _Py_open_noraise() when _Py_open() cannot be used because the GIL is not held
-
Victor Stinner yazdı
Disable completly pyatomic.h on C++, because <stdatomic.h> is not compatible with C++. <pyatomic.h> is only needed by the optimized PyThreadState_GET() macro in pystate.h. Instead, declare PyThreadState_GET() as an alias to PyThreadState_Get(), as done for limited API.
-
Robert Collins yazdı
-
Robert Collins yazdı
This allows manual selection of a specific unit such as usecs rather than the use of a heuristic. This is intended to aid machine processing of timeit output. Patch by Serhiy Storchaka.
-
Victor Stinner yazdı
_codecs_cn, _codecs_hk, _codecs_iso2022, _codecs_jp, _codecs_kr and _codecs_tw modules. pyexpat.c doesn't need to redeclare PyMODINIT_FUNC, it's already declared in Include/pyport.h.
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Victor Stinner yazdı
Sorry, it was a mistake, the patch is still under review: issue #23646.
-
Berker Peksag yazdı
Patch by Thomas Kluyver.
-
Berker Peksag yazdı
Patch by Thomas Kluyver.
-
- 16 Mar, 2015 6 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Victor Stinner yazdı
test_io. Allocate the large data before scheduling an alarm in 1 second. On very slow computer, the alarm rings sometimes during the memory allocation.
-
Victor Stinner yazdı
of test_io. Allocate the large data before scheduling an alarm in 1 second. On very slow computer, the alarm rings sometimes during the memory allocation.
-
Victor Stinner yazdı
PyEval_CallObjectWithKeywords() Sorry Serhiy, I missed your explanation because the review email was moved to my Spam folder :-(
-
Serhiy Storchaka yazdı
-