- 08 Eki, 2018 1 kayıt (commit)
-
-
Juliette Monsel yazdı
Implement the methods selection_from(), selection_range(), selection_present() and selection_to() for Tkinter Spinbox.
-
- 06 Eki, 2018 2 kayıt (commit)
-
-
Stéphane Wirtel yazdı
Fix typos
-
Ethan Furman yazdı
-
- 05 Eki, 2018 4 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Fixes warnings in tests added in bpo-32117 and bpo-34603.
-
Serhiy Storchaka yazdı
Flags SRE_FLAG_UNICODE and SRE_FLAG_ASCII are mutually exclusive.
-
Stéphane Wirtel yazdı
-
Matt Eaton yazdı
-
- 04 Eki, 2018 2 kayıt (commit)
-
-
-
Chih-Hsuan Yen yazdı
`arg` is misspelled as `agr`. I noticed this when playing with https://bugs.python.org/issue34871 https://bugs.python.org/issue34871
-
- 03 Eki, 2018 1 kayıt (commit)
-
-
Elvis Pranskevichus yazdı
The C implementation of asyncio.Task currently fails to perform the cancellation cleanup correctly in the following scenario. async def task1(): async def task2(): await task3 # task3 is never cancelled asyncio.current_task().cancel() await asyncio.create_task(task2()) The actuall error is a hardcoded call to `future_cancel()` instead of calling the `cancel()` method of a future-like object. Thanks to Vladimir Matveev for noticing the code discrepancy and to Yury Selivanov for coming up with a pathological scenario.
-
- 02 Eki, 2018 3 kayıt (commit)
-
-
tzickel yazdı
Fix a reference issue inside multiprocessing.Pool that caused the pool to remain alive if it was deleted without being closed or terminated explicitly.
-
Yury Selivanov yazdı
-
Benjamin Peterson yazdı
closes bpo-34868: Improve error message with '_' is combined with an invalid type specifier. (GH-9666)
-
- 01 Eki, 2018 1 kayıt (commit)
-
-
INADA Naoki yazdı
-
- 30 Eyl, 2018 3 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Patch by Serhiy Storchaka (in PR #9642).
-
Serhiy Storchaka yazdı
* Compiling a string annotation containing a lambda with keyword-only argument without default value caused a crash. * Remove the final "*" (it is incorrect syntax) in the representation of lambda without *args and keyword-only arguments when compile from AST. * Improve the representation of lambda without arguments.
-
Andrew Svetlov yazdı
The waiting is pretty normal for any asyncio program, logging its time just adds a noise to logs without any useful information provided. https://bugs.python.org/issue34849
-
- 29 Eyl, 2018 2 kayıt (commit)
-
-
Zackery Spytz yazdı
Switch "list" with "iterable" to match with the implementation.
-
Zackery Spytz yazdı
Support for threadless builds was removed in a6a4dc81.
-
- 28 Eyl, 2018 2 kayıt (commit)
-
-
Pablo Galindo yazdı
After some failures in AMD64 FreeBSD CURRENT Debug 3.x buildbots regarding tests in test_multiprocessing_spawn and after examining similar failures in test_socket, some errors in the calculation of ancillary data buffers were found in multiprocessing.reduction. CMSG_LEN() can often be used as the buffer size for recvmsg() to receive a single item of ancillary data, but RFC 3542 requires portable applications to use CMSG_SPACE() and thus include space for padding, even when the item will be the last in the buffer. The failures we experience are due to the usage of CMSG_LEN() instead of CMSG_SPACE().
-
Tal Einat yazdı
Improvements: 1. Include the number of valid data characters in the error message. 2. Mention "number of data characters" rather than "length". https://bugs.python.org/issue34736
-
- 27 Eyl, 2018 4 kayıt (commit)
-
-
Zsolt Cserna yazdı
Report the filename to the exception when raising {gdbm,dbm.ndbm}.error in dbm.gnu.open() and dbm.ndbm.open() functions, so it gets printed when the exception is raised, and can also be obtained by the filename attribute of the exception object.
-
Serhiy Storchaka yazdı
-
orlnub123 yazdı
Use a monotonic clock to compute timeouts in :meth:`Executor.map` and :func:`as_completed`, in order to prevent timeouts from deviating when the system clock is adjusted. This may not be sufficient on all systems. On POSIX for example, the actual waiting (e.g. in ``sem_timedwait``) is specified to rely on the CLOCK_REALTIME clock.
-
Pablo Galindo yazdı
After some failures in AMD64 FreeBSD CURRENT Debug 3.x buildbots regarding tests in test_socket that are using testFDPassSeparateMinSpace(), FreeBDS revision 337423 was pointed out to be the reason the test started to fail. A close examination of the manpage for cmsg_space(3) reveals that the number of file descriptors needs to be taken into account when using CMSG_LEN(). This commit fixes tests in test_socket to use correctly CMSG_LEN, taking into account the number of FDs.
-
- 26 Eyl, 2018 2 kayıt (commit)
-
-
Bjorn Andersson yazdı
The AF_QIPCRTR address family was introduced in Linux v4.7. Co-authored-by: Bjorn Andersson <bjorn.andersson@linaro.org>
-
INADA Naoki yazdı
When dict subclass overrides order (`__iter__()`, `keys()`, and `items()`), `dict(o)` should use it instead of dict ordering. https://bugs.python.org/issue34320
-
- 25 Eyl, 2018 9 kayıt (commit)
-
-
Cheryl Sabella yazdı
-
Yury Selivanov yazdı
-
Zackery Spytz yazdı
* bpo-5950: Support reading zips with comments in zipimport
-
Terry Jan Reedy yazdı
-
Victor Stinner yazdı
Fix test_socket.SendmsgSCTPStreamTest: catch ENOMEM error. testSendmsgTimeout() and testSendmsgDontWait() randomly fail on Travis CI with: "OSError: [Errno 12] Cannot allocate memory".
-
Victor Stinner yazdı
-
-
Tal Einat yazdı
-
Terry Jan Reedy yazdı
-
- 24 Eyl, 2018 4 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Ammar Askar yazdı
Also point to start of tokens in parsing errors. Fixes bpo-34683
-
Christian Heimes yazdı
The xml.sax and xml.dom.domreg modules now obey sys.flags.ignore_environment. Signed-off-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue34791
-
Victor Stinner yazdı
Make sure that "./python script.py" does not crash if the script file doesn't exist.
-