- 15 Şub, 2017 1 kayıt (commit)
-
-
Yen Chi Hsuan yazdı
bltinmodule.c: Added in b744ba1d and no longer necessary since d64e8a75 posixmodule.c: Added in d1cd4d41 and no longer necessary since efb00c0c pythonrun.c: Added in 73d538b9 and no longer necessary since d6009517 sysmodule.c: Added in 5467d4c0 and no longer necessary since a2c17c58
-
- 09 Şub, 2017 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
- 23 Ock, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
possible. Patch is writen with Coccinelle.
-
- 08 Ock, 2017 1 kayıt (commit)
-
-
Xiang Zhang yazdı
-
- 06 Ara, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Replace: PyObject_CallFunctionObjArgs(callable, NULL) with: _PyObject_CallNoArg(callable)
-
- 05 Ara, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Don't declare dead code when the code is declared with Clang.
-
- 04 Ara, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #28858: The change b9c9691c72c5 introduced a regression. It seems like _PyObject_CallArg1() uses more stack memory than PyObject_CallFunctionObjArgs().
-
- 01 Ara, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
* PyObject_CallFunctionObjArgs(func, NULL) => _PyObject_CallNoArg(func) * PyObject_CallFunctionObjArgs(func, arg, NULL) => _PyObject_CallArg1(func, arg) PyObject_CallFunctionObjArgs() allocates 40 bytes on the C stack and requires extra work to "parse" C arguments to build a C array of PyObject*. _PyObject_CallNoArg() and _PyObject_CallArg1() are simpler and don't allocate memory on the C stack. This change is part of the fastcall project. The change on listsort() is related to the issue #23507.
-
- 20 Kas, 2016 4 kayıt (commit)
-
-
Serhiy Storchaka yazdı
with PyUnicode_AsUTF8 and PyUnicode_AsUTF8AndSize.
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
Prevents crashes in some other posixmodule.c functions
-
- 08 Kas, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 06 Kas, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 10 Eki, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 08 Eki, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Patch by Eryk Sun.
-
- 23 Eyl, 2016 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 20 Eyl, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #27778: Fix a memory leak in os.getrandom() when the getrandom() is interrupted by a signal and a signal handler raises a Python exception. Modify also os_getrandom_impl() to avoid the temporary buffer, use directly a Python bytes object.
-
- 19 Eyl, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #28200: Replace PyUnicode_AsWideCharString() with PyUnicode_AsUnicodeAndSize().
-
- 18 Eyl, 2016 1 kayıt (commit)
-
-
Berker Peksag yazdı
I forgot there two variations of os.stat() in Python 3.5.
-
- 17 Eyl, 2016 1 kayıt (commit)
-
-
Berker Peksag yazdı
Patch by Eryk Sun.
-
- 15 Eyl, 2016 2 kayıt (commit)
-
-
Berker Peksag yazdı
Patch by Ed Schouten.
-
Berker Peksag yazdı
Patch by Eryk Sun.
-
- 12 Eyl, 2016 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 09 Eyl, 2016 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 05 Eyl, 2016 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 08 Eyl, 2016 4 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
- 07 Eyl, 2016 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 06 Eyl, 2016 6 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #27776: The os.urandom() function does now block on Linux 3.17 and newer until the system urandom entropy pool is initialized to increase the security. This change is part of the PEP 524.
-
Victor Stinner yazdı
Issue #27778: Expose the Linux getrandom() syscall as a new os.getrandom() function. This change is part of the PEP 524.
-
Victor Stinner yazdı
Issue #17884.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 26 Agu, 2016 1 kayıt (commit)
-
-
Brett Cannon yazdı
os.path. Thanks to Jelle Zijlstra for the initial patch against posixmodule.c.
-
- 15 Agu, 2016 1 kayıt (commit)
-
-
Ned Deily yazdı
to ref count problem introduced in code for Issue #27038 in 3.6.0a3. Patch by Xiang Zhang.
-