- 20 Ock, 2016 6 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #26154: Add a new private _PyThreadState_UncheckedGet() function which gets the current thread state, but don't call Py_FatalError() if it is NULL. Python 3.5.1 removed the _PyThreadState_Current symbol from the Python C API to no more expose complex and private atomic types. Atomic types depends on the compiler or can even depend on compiler options. The new function _PyThreadState_UncheckedGet() allows to get the variable value without having to care of the exact implementation of atomic types. Changes: * Replace direct usage of the _PyThreadState_Current variable with a call to _PyThreadState_UncheckedGet(). * In pystate.c, replace direct usage of the _PyThreadState_Current variable with the PyThreadState_GET() macro for readability. * Document also PyThreadState_Get() in pystate.h
-
Serhiy Storchaka yazdı
non-UTF-8 encoding.
-
Berker Peksag yazdı
A machine can have more than one IP addresses so socket.gethostbyname(socket.gethostname()) probably won't return the correct one.
-
Berker Peksag yazdı
Initial patch by Carlo Beccarini.
-
Donald Stufft yazdı
-
Donald Stufft yazdı
-
- 19 Ock, 2016 7 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Victor Stinner yazdı
Issue #11816: Fix bytecode_helper to handle correctly errors. Don't use unassigned variables.
-
Benjamin Peterson yazdı
Debugging by Eryk Sun.
-
Senthil Kumaran yazdı
Patch contributed by Ryder Lewis.
-
Martin Panter yazdı
The previous test relied on a remote server, which currently seems to be shutting the connection down once TLS has been set up, causing an EOFError. Now the test is implemented using a minimal NNTP server running in a background thread.
-
Berker Peksag yazdı
Some dependencies of pip import threading module unconditionally so we need to skip the test to make buildbots happy.
-
- 18 Ock, 2016 4 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
in old Python 3 versions (3.4.3 and lower).
-
Serhiy Storchaka yazdı
-
Senthil Kumaran yazdı
Issue26017 - Suggest enclosing command args in double quotes when using characters which get interpreted by shell.
-
- 17 Ock, 2016 2 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Re-encode CREDITS.txt to utf-8 and open it with 'utf-8'.
-
Senthil Kumaran yazdı
-
- 16 Ock, 2016 10 kayıt (commit)
-
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Senthil Kumaran yazdı
Issue26035 - Correct the argument names used in the docs of the traceback module. Make it consistent with module args. Patch contributed by Upendra Kumar.
-
Martin Panter yazdı
Otherwise, GDB seems to affect the terminal's foreground process group, interfering with test_ioctl, which does not expect the foreground process to change during the test. This change also solves the problem of the tests being stopped in the shell if test_gdb is run twice in parallel.
-
Martin Panter yazdı
-
Gregory P. Smith yazdı
"certificate verify failed " and "CERTIFICATE_VERIFY_FAILED " as some SSL libraries use different text than OpenSSL.
-
Gregory P. Smith yazdı
"certificate verify failed " and "CERTIFICATE_VERIFY_FAILED " as some SSL libraries use different text than OpenSSL.
-
- 15 Ock, 2016 7 kayıt (commit)
-
-
Brett Cannon yazdı
Previously zipimport mistakenly limited namespace support to only the top-level of the zipfile when it should have supported an arbitrary depth. Thanks to Phil Connel for the bug report and initial patch and Mike Romberg for the final patch.
-
Brett Cannon yazdı
Permission was validated prior to adding these markings.
-
Brett Cannon yazdı
While no copyright violation occurred, the license which 'Numerical Recipes' operates under is not amenable to Python, so to prevent confusion it's easier to simply remove its mention.
-
Martin Panter yazdı
-
Martin Panter yazdı
-
Martin Panter yazdı
-
Martin Panter yazdı
-
- 14 Ock, 2016 4 kayıt (commit)
-
-
Martin Panter yazdı
Removed SSL_ERROR_SYSCALL checking from ssl_io_loop() so that the loop can terminate when unwrap() raises that error.
-
Martin Panter yazdı
-
doko@ubuntu.com yazdı
-
Martin Panter yazdı
-