- 28 Eyl, 2018 3 kayıt (commit)
-
-
Victor Stinner yazdı
Since ProactorEventLoop is now the default in 3.8, remove examples using it explicitly on Windows. https://bugs.python.org/issue34687
-
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 6 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.
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
This fixes various compiler warnings.
-
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 4 kayıt (commit)
-
-
Tal Einat yazdı
-
Michael Lee yazdı
Currently, the docs state that when doing `Type[X]`, X is only allowed to be a class, a union of classes, and Any. This pull request amends that sentence to clarify X may also be a typevar (or a union involving classes, Any, and TypeVars).
-
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 16 kayıt (commit)
-
-
Cheryl Sabella yazdı
-
Yury Selivanov yazdı
-
Zackery Spytz yazdı
* bpo-5950: Support reading zips with comments in zipimport
-
Yury Selivanov yazdı
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
-
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ı
-
Géry Ogam yazdı
-
Zackery Spytz yazdı
The GlobalLock() call in UpdateDropDescription() was not checked for failure. https://bugs.python.org/issue34770
-
Joni Kähärä yazdı
-
Terry Jan Reedy yazdı
-
- 24 Eyl, 2018 11 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.
-
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Petr Viktorin yazdı
-
João Júnior yazdı
* Insert the warn in the asyncio.sleep when the loop argument is used * Insert the warn in the asyncio.wait and asyncio.wait_for when the loop argument is used * Better format of the code * Add news file * change calls for get_event_loop() to calls for get_running_loop() * Change message to be more clear in News * Improve the comments in test_tasks
-
Tim Hoffmann yazdı
-
Lisa Roach yazdı
-