- 23 Nis, 2019 3 kayıt (commit)
-
-
jkleint yazdı
-
Jakub Molinski yazdı
-
Raymond Hettinger yazdı
-
- 22 Nis, 2019 16 kayıt (commit)
-
-
Windson yang yazdı
-
Windson yang yazdı
-
Windson yang yazdı
-
Windson yang yazdı
-
Windson yang yazdı
-
Windson yang yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Zackery Spytz yazdı
-
Zackery Spytz yazdı
-
Berker Peksag yazdı
-
周家未 yazdı
-
Marcin Niemira yazdı
-
Wu Wei yazdı
-
Xtreak yazdı
Co-authored-by: Felipe <felipe.nospam.ochoa@gmail.com>
-
Joannah Nanjekye yazdı
-
- 21 Nis, 2019 1 kayıt (commit)
-
-
mollison yazdı
-
- 20 Nis, 2019 2 kayıt (commit)
-
-
Fredrik Averpil yazdı
"sychronization" -> "synchronization"
-
Raymond Hettinger yazdı
-
- 19 Nis, 2019 1 kayıt (commit)
-
-
Inada Naoki yazdı
PyUnicode_AsUnicodeAndSize() -> PyUnicode_AsWideChar()
-
- 18 Nis, 2019 6 kayıt (commit)
-
-
Stefan Behnel yazdı
bpo-30485: Change the prefix for defining the default namespace in ElementPath from None to '' since there is existing code that uses that and it's more convenient to have an all-string-keys dict (e.g. when sorting items etc.). (#12860)
-
# [bpo-36651](https://bugs.python.org/issue36651): Fixed Asyncio Event Loop documentation inconsistency In the documentation for the call_later and the call_at methods there is a note which says that the delay cannot be longer than a day, but both methods have a note saying that this limitation was removed in Python 3.8 Here I fixed this issue by removing the pre-exising note and added a versionchanged. To test my changes I have rebuilt the documentation with ```make html```. I did not have any errors and the effected page displayed correctly on a browser. https://bugs.python.org/issue36651
-
Victor Stinner yazdı
Add a new _testinternalcapi module to test the internal C API. Move _Py_GetConfigsAsDict() function to the internal C API: _testembed now uses _testinternalcapi to access the function.
-
Paul Monson yazdı
-
Paul Monson yazdı
-
cocoatomo yazdı
This paragraph doesn't seem to be a part of code, but merged into previous code block.
-
- 17 Nis, 2019 11 kayıt (commit)
-
-
josh yazdı
-
Steve Dower yazdı
-
Victor Stinner yazdı
Change PyAPI_FUNC(type), PyAPI_DATA(type) and PyMODINIT_FUNC macros of pyport.h when Py_BUILD_CORE_MODULE is defined. The Py_BUILD_CORE_MODULE define must be now be used to build a C extension as a dynamic library accessing Python internals: export the PyInit_xxx() function in DLL exports on Windows. Changes: * Py_BUILD_CORE_BUILTIN and Py_BUILD_CORE_MODULE now imply Py_BUILD_CORE directy in pyport.h. * ceval.c compilation now fails with an error if Py_BUILD_CORE is not defined, just to ensure that Python is build with the correct defines. * setup.py now compiles _pickle.c with Py_BUILD_CORE_MODULE define. * setup.py compiles _json.c with Py_BUILD_CORE_MODULE define, rather than Py_BUILD_CORE_BUILTIN define * PCbuild/pythoncore.vcxproj: Add Py_BUILD_CORE_BUILTIN define.
-
Victor Stinner yazdı
Fix Python Initialization code on FreeBSD to detect properly when stdin file descriptor (fd 0) is invalid. On FreeBSD, fstat() must be used to check if stdin (fd 0) is valid. dup(0) doesn't fail if stdin is invalid in some cases.
-
Victor Stinner yazdı
-
Lihua Zhao yazdı
Skip tests cases setting RLIMIT_FSIZE and RLIMIT_CPU on VxWorks.
-
Lihua Zhao yazdı
subprocess.Popen doesn't support preexec on VxWorks.
-
Victor Stinner yazdı
Document the change in a NEWS entry of the Security category.
-
Victor Stinner yazdı
shutil.which() and distutils.spawn.find_executable() now use os.confstr("CS_PATH") if available instead of os.defpath, if the PATH environment variable is not set. Don't use os.confstr("CS_PATH") nor os.defpath if the PATH environment variable is set to an empty string to mimick Unix 'which' command behavior. Changes: * find_executable() now starts by checking for the executable in the current working directly case. Add an explicit "if not path: return None". * Add tests for PATH='' (empty string), PATH=':' and for PATHEXT.
-
Colin Watson yazdı
-
Lihua Zhao yazdı
Fix test_tabnanny on VxWorks: adjust ENOENT error message, use os.strerror().
-