- 13 Tem, 2019 5 kayıt (commit)
-
-
Batuhan Osman TASKAYA yazdı
-
Milan Oberkirch yazdı
[bpo-37580](https://bugs.python.org/issue37580): Markup typo in http.cookiejar doc https://bugs.python.org/issue37580
-
Steve Dower yazdı
-
Robert DiPietro yazdı
-
gescheit yazdı
-
- 12 Tem, 2019 3 kayıt (commit)
-
-
Brett Cannon yazdı
Fix importlib examples to insert any newly created modules via importlib.util.module_from_spec() immediately into sys.modules instead of after calling loader.exec_module(). Thanks to Benjamin Mintz for finding the bug. https://bugs.python.org/issue37521
-
Kyle Stanley yazdı
Move `threaded_import_hangers`, a dependency of `test_threaded_import`, to the directory `test_importlib/`. Also update the import references for `threaded_import_hangers` in `test_threaded_import`. https://bugs.python.org/issue19696
-
Hai Shi yazdı
-
- 11 Tem, 2019 8 kayıt (commit)
-
-
Disconnect3d yazdı
The `arraymodule`'s `b_getitem` function returns a `PyLong` converted from `arrayobject`'s array, by dereferencing a pointer to `char`. When the `char` type is `signed char`, the `if (x >= 128) x -= 256;` comparison/code is redundant because a `signed char` will have a value of `[-128, 127]` and so `x` will never be greater or equal than 128. This check was indeed needed for situations where a given compiler would assume `char` being `unsigned char` which would make `x` in `[0, 256]` range. However, the check can be removed if we cast the `ob_item` into a signed char pointer (`signed char*`) instead of `char*`. This PR/commit introduces this change.
-
Jakub Kulík yazdı
With the addition of shared memory into Python 3.8, we now have three tests failing on Solaris, namely `test_multiprocessing_fork`, `test_multiprocessing_forkserver` and `test_multiprocessing_spawn`. The reason seems to be incorrect name handling which results in two slashes being prepended. https://bugs.python.org/issue37558
-
-
Jeroen Demeyer yazdı
-
Tal Einat yazdı
-
Tal Einat yazdı
-
Jeroen Demeyer yazdı
-
Benjamin Peterson yazdı
-
- 10 Tem, 2019 4 kayıt (commit)
-
-
Tim Peters yazdı
uintptr_t is an integer type, and can't be compared to NULL directly.
-
Neil Schemenauer yazdı
Keeping an account of allocated blocks slows down _PyObject_Malloc() and _PyObject_Free() by a measureable amount. Have _Py_GetAllocatedBlocks() iterate over the arenas to sum up the allocated blocks for pymalloc.
-
Stefan Krah yazdı
-
Stefan Krah yazdı
-
- 09 Tem, 2019 8 kayıt (commit)
-
-
Terry Jan Reedy yazdı
After fcf1d003, IDLE startup failed with python compiled without docstrings.
-
Hai Shi yazdı
-
Victor Stinner yazdı
test_ssl.test_pha_required_nocert() now uses support.catch_threading_exception() to ignore the expected SSLError in ConnectionHandler of ThreadedEchoServer (it is only raised sometimes on Windows).
-
-
Victor Stinner yazdı
This reverts commit cf9c41c4.
-
Victor Stinner yazdı
Replace PyLong_FromLong() with PyLong_FromSize_t(): SSL_CTX_get_num_tickets() return type is size_t. https://bugs.python.org/issue37120
-
Victor Stinner yazdı
Context manager catching threading.Thread exception using threading.excepthook.
-
Victor Stinner yazdı
Close the TLS connection in test_pha_required_nocert() of test_ssl to fix a ResourceWarning.
-
- 08 Tem, 2019 5 kayıt (commit)
-
-
Nested BinOp instances (e.g. a+b+c) had a wrong col_offset for the second BinOp (e.g. 2 instead of 0 in the example). Fix it by using the correct st node to copy the line and col_offset from in ast.c.
-
Julien Palard yazdı
-
Julien Palard yazdı
Initial report by Michael Blankenship on docs@
-
Victor Stinner yazdı
test_concurrent_futures now explicitly stops the ForkServer instance if it's running.
-
Jeroen Demeyer yazdı
-
- 07 Tem, 2019 4 kayıt (commit)
-
-
Jason R. Coombs yazdı
* bpo-37520: Correct behavior for zipfile.Path.parent *
📜 🤖 Added by blurb_it. -
Hai Shi yazdı
-
Terry Jan Reedy yazdı
-
Kyle Stanley yazdı
-
- 06 Tem, 2019 3 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
0 is a legal index.
-
Tal Einat yazdı
This is done to compensate for the extra stack frames added by IDLE itself, which cause problems when setting the recursion limit to low values. This wraps sys.setrecursionlimit() and sys.getrecursionlimit() as invisibly as possible.
-