- 26 Oct, 2018 2 commits
-
-
Senthil Kumaran authored
* bpo-34576 - Fix the formatting for security considerations in http.server.rst (#10005) * Address review comment.. (cherry picked from commit eeab510b) Co-authored-by: Senthil Kumaran <skumaran@gatech.edu>
-
Zackery Spytz authored
Don't leak a reference if PyDict_Update() fails, check the PyList_New() call in treebuilder_new(), and properly handle failures in xmlparser(). (cherry picked from commit 9f3ed3e2)
-
- 24 Oct, 2018 2 commits
-
-
Zsolt Cserna authored
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)
-
- 23 Oct, 2018 1 commit
-
-
Xiang Zhang authored
(cherry picked from commit 83a07652) Co-authored-by: Andrei Petre p31andrei@gmail.com
-
- 21 Oct, 2018 1 commit
-
-
Serhiy Storchaka authored
(cherry picked from commit 1deea5e5). (cherry picked from commit bd9c2ce7acaef45f23c2659b854fc9925096d040) Co-authored-by: Juliette Monsel <j4321@users.noreply.github.com>
-
- 20 Oct, 2018 5 commits
-
-
Terry Jan Reedy authored
[2.7] bpo-31500: Add idlelib news items about HiDPI scaling
-
Cheryl Sabella authored
(cherry picked from commit a96c96f5)
-
Miss Islington (bot) authored
https://bugs.python.org/issue35032 (cherry picked from commit d262250d) Co-authored-by: Stéphane Wirtel <stephane@wirtel.be>
-
Miss Islington (bot) authored
Add restriction on the offset parameter for mmap.flush. Explain that ALLOCATIONGRANULARITY is the same as PAGESIZE in Unix. (cherry picked from commit 027664a3) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
-
Miss Islington (bot) authored
Initial patch by Chandan Kumar. (cherry picked from commit 13ae4d44) Co-authored-by: Berker Peksag <berker.peksag@gmail.com>
-
- 19 Oct, 2018 2 commits
-
-
Miss Islington (bot) authored
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 (cherry picked from commit 223e501f) Co-authored-by: Christian Heimes <christian@python.org>
-
Miss Islington (bot) authored
(cherry picked from commit 68def052) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
-
- 17 Oct, 2018 1 commit
-
-
Stéphane Wirtel authored
Verify the value for the parameter '-s' of the cProfile CLI. Patch by Robert Kuska. Co-authored-by: Robert Kuska <rkuska@gmail.com> (cherry picked from commit fcd5e84a) https://bugs.python.org/issue23420
-
- 16 Oct, 2018 2 commits
-
-
Miss Islington (bot) authored
(cherry picked from commit e385d066) Co-authored-by: Stéphane Wirtel <stephane@wirtel.be>
-
Zackery Spytz authored
(cherry picked from commit d4d60134)
-
- 15 Oct, 2018 2 commits
-
-
Victor Stinner authored
python-gdb.py now handles errors on computing the line number of a Python frame. Changes: * PyFrameObjectPtr.current_line_num() now catchs any Exception on calling addr2line(), instead of failing with a surprising "<class 'TypeError'> 'FakeRepr' object is not subscriptable" error. * All callers of current_line_num() now handle current_line_num() returning None. * PyFrameObjectPtr.current_line() now also catchs IndexError on getting a line from the Python source file. (cherry picked from commit 2e438cc2)
-
Serhiy Storchaka authored
The bytearray constructor converted unexpected exceptions (e.g. MemoryError and KeyboardInterrupt) to TypeError. (cherry picked from commit e890421e)
-
- 14 Oct, 2018 1 commit
-
-
Serhiy Storchaka authored
Covered all special cases: bytes, tuple, list, differend kinds of iterables and iterators. (cherry picked from commit 1a997eb2)
-
- 13 Oct, 2018 1 commit
-
-
Zackery Spytz authored
Frame's field f_tstate is NULL when the generator is exhausted.
-
- 12 Oct, 2018 1 commit
-
-
Miss Islington (bot) authored
(cherry picked from commit 4505f65a) Co-authored-by: Gus Goulart <augusto@goulart.me>
-
- 10 Oct, 2018 1 commit
-
-
Victor Stinner authored
When Python is built with the intel control-flow protection flags, -mcet -fcf-protection, gdb is not able to read the stack without actually jumping inside the function. This means an extra 'next' command is required to make the $pc (program counter) enter the function and make the stack of the function exposed to gdb. test_gdb: get_gdb_repr() now uses the "backtrace 1" command after breakpoint, as in the master branch. Co-Authored-By: Marcel Plch <gmarcel.plch@gmail.com> (cherry picked from commit 9b7c74ca) (cherry picked from commit 79d21331)
-
- 03 Oct, 2018 1 commit
-
-
tzickel authored
Fix a reference issue inside multiprocessing.Pool that caused the pool to remain alive if it was deleted without being closed or terminated explicitly.
-
- 29 Sep, 2018 1 commit
-
-
Andrés Delfino authored
* bpo-13407: Mention that tarfile doesn't support multistream bzip2 files * Add mention to bz2 module also
-
- 26 Sep, 2018 1 commit
-
-
Victor Stinner authored
Fix the following warning: Python/pystrtod.c: In function 'format_float_short': Python/pystrtod.c:1007:13: warning: 'strncpy' output truncated before terminating nul copying 3 bytes from a string of the same length [-Wstringop-truncation] strncpy(p, "ERR", 3); (cherry picked from commit 9fb84157)
-
- 24 Sep, 2018 1 commit
-
-
Terry Jan Reedy authored
-
- 22 Sep, 2018 4 commits
-
-
Serhiy Storchaka authored
(cherry picked from commit e0e5065d) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
-
Serhiy Storchaka authored
This makes streamed zips compatible with MacOS Archive Utility and other applications. (cherry picked from commit 4ba3b50b) Co-authored-by: Silas Sewell <silas@sewell.org>
-
Miss Islington (bot) authored
Also make docs for NEWFALSE and NEWTRUE more consistent with docs for other opcodes. (cherry picked from commit 488cfb78) Co-authored-by: Krzysztof Wroblewski <krzysiek.wr@gmail.com>
-
Miss Islington (bot) authored
https://bugs.python.org/issue34623 (cherry picked from commit 026337a7) Co-authored-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue34623
-
- 20 Sep, 2018 2 commits
-
-
Miss Islington (bot) authored
(cherry picked from commit 8213eadd) Co-authored-by: Berker Peksag <berker.peksag@gmail.com>
-
Christian Heimes authored
Update all test certs and keys to use future proof crypto settings: * 3072 bit RSA keys * SHA-256 signature Signed-off-by: Christian Heimes <christian@python.org>. (cherry picked from commit e6dac007) https://bugs.python.org/issue34542
-
- 19 Sep, 2018 1 commit
-
-
Vladimir Matveev authored
Co-authored-by: Vladimir Matveev <v2matveev@outlook.com>
-
- 18 Sep, 2018 2 commits
-
-
Serhiy Storchaka authored
(cherry picked from commit 9bdb7be4)
-
Christian Heimes authored
The C accelerated _elementtree module now initializes hash randomization salt from _Py_HashSecret instead of libexpat's default CPRNG. Signed-off-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue34623. (cherry picked from commit cb5778f0) Co-authored-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue34623
-
- 17 Sep, 2018 2 commits
-
-
Christian Heimes authored
Include ``openssl/dh.h`` header file to fix implicit function declaration of ``DH_free()``. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>. (cherry picked from commit b3a271fc) Co-authored-by: Alexandru Ardelean <ardeleanalex@gmail.com> https://bugs.python.org/issue34710
-
Serhiy Storchaka authored
(cherry picked from commit 76aa2c0a9a8dd3ac90b91e7342c8ce8125bf21f9) Co-authored-by: larryhastings <larry@hastings.org>
-
- 16 Sep, 2018 1 commit
-
-
xdegaye authored
(cherry picked from commit 3fe33043) https://bugs.python.org/issue19417
-
- 14 Sep, 2018 2 commits
-
-
Shoham Peller authored
When the server has closed the connection before sending a status-line, the client's error message should have a more descriptive error message https://bugs.python.org/issue8450 https://bugs.python.org/issue8450
-
Benjamin Peterson authored
(cherry picked from commit a4414ef2)
-