- 27 Eki, 2018 3 kayıt (commit)
-
-
Miss Islington (bot) yazdı
(cherry picked from commit 40bf6cff) Co-authored-by:
nsrip <nick.ripley@me.com>
-
Miss Islington (bot) yazdı
Referring to ``pytest`` as ``py.test`` is deprecated. (cherry picked from commit d855f2fd) Co-authored-by:
Andreas Pelme <andreas@pelme.se>
-
Miss Islington (bot) yazdı
Specify that blocks are non-overlapping. Change '!=' to '<'. (cherry picked from commit d9bff4e8) Co-authored-by:
Terry Jan Reedy <tjreedy@udel.edu>
-
- 26 Eki, 2018 7 kayıt (commit)
-
-
Miss Islington (bot) yazdı
"threadsafe" (cherry picked from commit 4e3a53bc) Co-authored-by:
Benjamin Peterson <benjamin@python.org>
-
Miss Islington (bot) yazdı
Declare functions with EXTINLINE: * mpd_del() * mpd_uint_zero() * mpd_qresize() * mpd_qresize_zero() * mpd_minalloc() These functions are implemented with "inline" or "ALWAYS_INLINE", but declared without inline which cause linker error on Visual Studio in Debug mode when using /Ob1. (cherry picked from commit 3b1cba37) Co-authored-by:
Victor Stinner <vstinner@redhat.com>
-
Senthil Kumaran yazdı
* bpo-34576 - Fix the formatting for security considerations in http.server.rst (#10005) (cherry picked from commit eeab510b)
-
Miss Islington (bot) yazdı
Prior to this revision, after the shutdown of a `BaseServer`, the server accepted a last single request if it was sent between the server socket polling and the polling timeout. This can be problematic for instance for a server restart for which you do not want to interrupt the service, by not closing the listening socket during the restart. One request failed because of this behavior. Note that only one request failed, following requests were not accepted, as expected. (cherry picked from commit 10cb3760) Co-authored-by:
Denis Ledoux <be.ledoux.denis@gmail.com>
-
Andrés Delfino yazdı
-
Miss Islington (bot) yazdı
(cherry picked from commit e483f024) Co-authored-by:
Stéphane Wirtel <stephane@wirtel.be>
-
Serhiy Storchaka yazdı
(cherry picked from commit ddb961d2) Co-authored-by:
Serhiy Storchaka <storchaka@gmail.com>
-
- 25 Eki, 2018 3 kayıt (commit)
-
-
Miss Islington (bot) yazdı
https://bugs.python.org/issue35038 (cherry picked from commit 1770d1c5) Co-authored-by:
Stéphane Wirtel <stephane@wirtel.be>
-
Steve Dower yazdı
-
Miss Islington (bot) yazdı
.o generated by clang in LTO mode actually are LLVM bitcode files, which leads to a few errors during configure/build step: - add lto flags to the BASECFLAGS instead of CFLAGS, as CFLAGS are used to build autoconf test case, and some are not compatible with clang LTO (they assume binary in the .o, not bitcode) - force llvm-ar instead of ar, as ar is not aware of .o files generated by clang -flto (cherry picked from commit 5ad36f9b) Co-authored-by:
serge-sans-paille <serge.guelton@telecom-bretagne.eu>
-
- 24 Eki, 2018 5 kayıt (commit)
-
-
Miss Islington (bot) yazdı
(cherry picked from commit 890423f7) Co-authored-by:
Ned Batchelder <ned@nedbatchelder.com>
-
Miss Islington (bot) yazdı
The spec gets stored on modules with the __spec__ attribute, not spec. (cherry picked from commit 78401f71) Co-authored-by:
orlnub123 <orlnub123@gmail.com>
-
Miss Islington (bot) yazdı
(cherry picked from commit e80e77a4) Co-authored-by:
TilmanK <tilman.krummeck@googlemail.com>
-
Miss Islington (bot) yazdı
Replace str.format with f-strings in the code examples of asyncio-task documentation. (cherry picked from commit 9f43fbbd) Co-authored-by:
Mariatta <Mariatta@users.noreply.github.com>
-
Tal Einat yazdı
(cherry picked from commit dfba1f67) https://bugs.python.org/issue33899
-
- 23 Eki, 2018 8 kayıt (commit)
-
-
Zsolt Cserna yazdı
Fix the documentation of copy2, as it does not copy file ownership (user and group), only mode, mtime, atime and flags. The original text was confusing to developers as it suggested that this command is the same as 'cp -p', but according to cp(1), '-p' copies file ownership as well. Clarify which metadata is copied by shutil.copystat in its docstring. (cherry picked from commit 4f399be0)
-
Miss Islington (bot) yazdı
Based on the investigation by Xiang Zhang. (cherry picked from commit df13df41) Co-authored-by:
Serhiy Storchaka <storchaka@gmail.com>
-
Miss Islington (bot) yazdı
References could leak, NULL could be dereferenced, and the Expat parser could be double freed when some errors raised. (cherry picked from commit 9f3ed3e2) Co-authored-by:
Zackery Spytz <zspytz@gmail.com>
-
Miss Islington (bot) yazdı
(cherry picked from commit fa532942) Co-authored-by:
Jeremy Kloth <jeremy.kloth@gmail.com>
-
Miss Islington (bot) yazdı
https://bugs.python.org/issue35028 (cherry picked from commit b79b5c09) Co-authored-by:
matthewbelisle-wf <matthew.belisle@workiva.com>
-
Miss Islington (bot) yazdı
(cherry picked from commit b7d62050)
-
Miss Islington (bot) yazdı
(cherry picked from commit 3b0047d8) Co-authored-by:
Alexey Izbyshev <izbyshev@ispras.ru>
-
Miss Islington (bot) yazdı
(cherry picked from commit 83a07652) Co-authored-by:
Andrei Petre <p31andrei@gmail.com>
-
- 22 Eki, 2018 1 kayıt (commit)
-
-
Miss Islington (bot) yazdı
* Use _PyUnicode_Copy in sanitize_isoformat_str * Use repr in fromisoformat error message This reverses commit 67b74a98b2 per Serhiy Storchaka's suggestion: I suggested to use %R in the error message because including the raw string can be confusing in the case of empty string, or string containing trailing whitespaces, invisible or unprintable characters. We agree that it is better to change both the C and pure Python versions to use repr. * Retain non-sanitized dtstr for error printing This does not create an extra string, it just holds on to a reference to the original input string for purposes of creating the error message. * PEP 7 fixes to from_isoformat * Separate handling of Unicode and other errors In the initial implementation, errors other than encoding errors would both raise an error indicating an invalid format, which would not be true for errors like MemoryError. * Drop needs_decref from _sanitize_isoformat_str Instead _sanitize_isoformat_str returns a new reference, even to the original string. (cherry picked from commit 3df85404) Co-authored-by:
Paul Ganssle <pganssle@users.noreply.github.com>
-
- 21 Eki, 2018 2 kayıt (commit)
-
-
Miss Islington (bot) yazdı
Constructing bytes from mutating list could cause a crash. (cherry picked from commit 914f9a07) Co-authored-by:
Serhiy Storchaka <storchaka@gmail.com>
-
Miss Islington (bot) yazdı
Guard the `CLOCK_GETTIME` et al macros in `timemodule` based on the availability of the parent functions (cherry picked from commit 94451182) Co-authored-by:
Max Bélanger <aeromax@gmail.com>
-
- 20 Eki, 2018 11 kayıt (commit)
-
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Miss Islington (bot) yazdı
https://bugs.python.org/issue35032 (cherry picked from commit d262250d) Co-authored-by:
Stéphane Wirtel <stephane@wirtel.be>
-
Serhiy Storchaka yazdı
(cherry picked from commit 6f17e513)
-
Ned Deily yazdı
-
Miss Islington (bot) yazdı
(cherry picked from commit a5259fb0) Co-authored-by:
Sergey Fedoseev <fedoseev.sergey@gmail.com>
-
Miss Islington (bot) yazdı
* Add News entry for the change in multiprocessing.reduction.recvfds made in GH-9613. (cherry picked from commit bd036d3d) Co-authored-by:
Pablo Galindo <Pablogsal@gmail.com>
-
Miss Islington (bot) yazdı
https://bugs.python.org/issue34970 (cherry picked from commit 97cf0828) Co-authored-by:
Andrew Svetlov <andrew.svetlov@gmail.com>
-
Ned Deily yazdı
-