- 14 Şub, 2019 4 kayıt (commit)
-
-
Paul Monson yazdı
This change adds the necessary items to the build projects to avoid erroring out right at the start. It does not add _support_ for targeting Windows on ARM32, but is a necessary prerequisite for adding it.
-
Zackery Spytz yazdı
-
Kevin Mai-Husan Chia yazdı
-
Susan Su yazdı
-
- 13 Şub, 2019 6 kayıt (commit)
-
-
Nina Zakharenko yazdı
-
Victor Stinner yazdı
Fix a crash in slice_richcompare(): use strong references rather than stolen references for the two temporary internal tuples. The crash (or assertion error) occurred if a garbage collection occurred during slice_richcompare(), especially while calling PyObject_RichCompare(t1, t2, op).
-
Cheryl Sabella yazdı
-
Raymond Hettinger yazdı
Minor code clean-up.
-
Anthony Sottile yazdı
-
Pablo Galindo yazdı
-
- 12 Şub, 2019 4 kayıt (commit)
-
-
Matěj Cepl yazdı
Make test_imap4_host_default_value independent on whether the local IMAP server is running.
-
Alexey Izbyshev yazdı
bpo-35972: _xxsubinterpreters: Fix potential integer truncation on 32-bit in channel_send() (gh-11822)
-
Christopher Hunt yazdı
-
Rémi Lapeyre yazdı
-
- 11 Şub, 2019 4 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Pablo Galindo yazdı
Changes in this commit: 1. Use a _strong_ reference between the Pool and associated iterators 2. Rework PR #8450 to eliminate a cycle in the Pool. There is no test in this commit because any test that automatically tests this behaviour needs to eliminate the pool before joining the pool to check that the pool object is garbaged collected/does not hang. But doing this will potentially leak threads and processes (see https://bugs.python.org/issue35413).
-
Guido van Rossum yazdı
If PyUnicode_DecodeUTF8() returns NULL, PyArena_AddPyObject() would crash. Found by @msullivan for https://github.com/python/typed_ast/pull/93.
-
Eivind Teig yazdı
Original patch by Mike Short https://bugs.python.org/issue22062
-
- 10 Şub, 2019 5 kayıt (commit)
-
-
Julien Palard yazdı
-
Pablo Galindo yazdı
-
Pablo Galindo yazdı
-
Ivan Levkivskyi yazdı
-
Pablo Galindo yazdı
-
- 09 Şub, 2019 4 kayıt (commit)
-
-
Pablo Galindo yazdı
-
Pablo Galindo yazdı
Keeping references to processes and managers between tests makes them count as dangling processes.
-
Terry Jan Reedy yazdı
Add a code example block.
-
Raymond Hettinger yazdı
-
- 08 Şub, 2019 4 kayıt (commit)
-
-
Tim Peters yazdı
Add tooling that will useful in future updates, paying particular attention to difficult cases where only the upper bits on the input vary.
-
Neil Schemenauer yazdı
Use autoconfig to probe for shm_open() and shm_unlink(). Set SHM_NEEDS_LIBRT if we must link with librt to get the shm_* functions. Change setup.py to use the autoconfig defines. These changes should make it more likely that _multiprocessing/posixshmem.c gets built correctly on different platforms.
-
Raymond Hettinger yazdı
-
Paul Ganssle yazdı
This was a backwards incompatible change and should be clearly noted. Related bugs: bpo-32417: https://bugs.python.org/issue32417 bpo-35364: https://bugs.python.org/issue35364
-
- 07 Şub, 2019 5 kayıt (commit)
-
-
Fish yazdı
Protect dict iterations by wrapping them with _IterationGuard in the following methods: - WeakValueDictionary.copy() - WeakValueDictionary.__deepcopy__() - WeakKeyDictionary.copy() - WeakKeyDictionary.__deepcopy__()
-
Pierre Glaser yazdı
Add a cell constructor, expose the cell type in the types module.
-
Jason R. Coombs yazdı
bpo-24209: In http.server script, rely on getaddrinfo to bind to preferred address based on the bind parameter. (#11767) In http.server script, rely on getaddrinfo to bind to preferred address based on the bind parameter. As a result, now IPv6 is used as the default (including IPv4 on dual-stack systems). Enhanced tests.
-
Giampaolo Rodola yazdı
multiprocessing: provide unittests for manager classes and shareable types
-
Pablo Galindo yazdı
-
- 06 Şub, 2019 1 kayıt (commit)
-
-
Mariatta yazdı
-
- 05 Şub, 2019 3 kayıt (commit)
-
-
Harmandeep Singh yazdı
-
Inada Naoki yazdı
-
Inada Naoki yazdı
-