- 25 Feb, 2018 5 commits
-
-
Christian Heimes authored
Signed-off-by: Christian Heimes <christian@python.org>
-
Christian Heimes authored
The ctypes module used to depend on indirect linking for dlopen. The shared extension is now explicitly linked against libdl on platforms with dl. Signed-off-by: Christian Heimes <christian@python.org>. (cherry picked from commit 5bb96925) Co-authored-by: Christian Heimes <christian@python.org>
-
Christian Heimes authored
The ssl module now detects missing NPN support in LibreSSL. Co-Authored-By: Bernard Spil <brnrd@FreeBSD.org> Signed-off-by: Christian Heimes <christian@python.org>. (cherry picked from commit 6cdb7954) Co-authored-by: Christian Heimes <christian@python.org>
-
Miss Islington (bot) authored
The SSL module no longer sends IP addresses in SNI TLS extension on platforms with OpenSSL 1.0.2+ or inet_pton. Signed-off-by: Christian Heimes <christian@python.org> (cherry picked from commit e9370a47389903bb72badc95032ec84a0ebbf8cc) Co-authored-by: Christian Heimes <christian@python.org>
-
Christian Heimes authored
SSLContext.load_dh_params() now supports non-ASCII path. Signed-off-by: Christian Heimes <christian@python.org>
-
- 24 Feb, 2018 1 commit
-
-
Christian Heimes authored
Debian Unstable has disabled TLS 1.0 and 1.1 for SSLv23_METHOD(). Change TLS/SSL protocol of some tests to PROTOCOL_TLS or PROTOCOL_TLSv1_2 to make them pass on Debian. Signed-off-by: Christian Heimes <christian@python.org>
-
- 23 Feb, 2018 2 commits
-
-
Miss Islington (bot) authored
`whilst` and `while` are both english words, `whilst` is not as commonly used. This can be confusing to readers whose primary language is not english. (cherry picked from commit 98f42aac) Co-authored-by: Mariatta <Mariatta@users.noreply.github.com>
-
Anselm Kruis authored
Make test.support.temp_cwd() fork-safe. The context manager test.support.temp_cwd() no longer removes the temporary directory when executing in a process other than the parent it entered from. If a forked child exits the context manager it won't do the cleanup.. (cherry picked from commit 33dddac0) Co-authored-by: Anselm Kruis <a.kruis@science-computing.de>
-
- 21 Feb, 2018 2 commits
-
-
Miss Islington (bot) authored
[2.7] bpo-31848: Fix broken error handling in Aifc_read.initfp() when the SSND chunk is not found (GH-5240) (GH-5781) Initialize self._ssnd_chunk so that aifc.Error is raised as intended, not AttributeError. (cherry picked from commit 80d20b91) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
-
Benjamin Peterson authored
It's bad form to pin to an old version of TLS. ssl.SSLContext has the right protocol default, so let's not pass anyway.. (cherry picked from commit e9edee0b)
-
- 19 Feb, 2018 2 commits
-
-
Raymond Hettinger authored
-
Éric Araujo authored
(cherry picked from commit 08a6926b) Co-authored-by: Éric Araujo <merwok@netwok.org>
-
- 18 Feb, 2018 1 commit
-
-
Zachary Ware authored
(cherry picked from commit 7eb3f822)
-
- 17 Feb, 2018 1 commit
-
-
Miss Islington (bot) authored
Adapt documentation for `copyright` and `credits` to reality. Previously, the documentation implied that all each of `copyright`, `credits`, and `license`, would print a message to call the object in order to see the full text. In reality, only `license` exhibits this behaviour, and `copyright` and `credit` print their full text either when printed, displayed, or called. (cherry picked from commit 243d6d71) Co-authored-by: Gerrit Holl <gerrit.holl@gmail.com>
-
- 14 Feb, 2018 3 commits
-
-
Miss Islington (bot) authored
A closing parentheses was missing. Signed-off-by: Ngie Cooper <yaneurabeya@gmail.com> (cherry picked from commit 7745ec4e) Co-authored-by: ngie-eign <1574099+ngie-eign@users.noreply.github.com>
-
Miss Islington (bot) authored
Remove pkg_add -r python from FreeBSD installation section. Moved to OpenBSD. (cherry picked from commit 3384d38d) Co-authored-by: Eitan Adler <grimreaper@users.noreply.github.com>
-
Benjamin Peterson authored
(cherry picked from commit 2b86f4cb)
-
- 12 Feb, 2018 2 commits
-
-
Serhiy Storchaka authored
It now processes files as binary streams. This also fixes "make reindent".
-
Miss Islington (bot) authored
It now reads: ...be aware that Python has no control over... (cherry picked from commit 517da1e5) Co-authored-by: Alexey <forestbiiird@gmail.com>
-
- 11 Feb, 2018 3 commits
-
-
Miss Islington (bot) authored
(cherry picked from commit 6ea20fc7)
-
Zachary Ware authored
(cherry picked from commit 28607e0d)
-
Miss Islington (bot) authored
The new link is given in a red box on the old page. (cherry picked from commit 8d1f2f40) Co-authored-by: sblondon <sblondon@users.noreply.github.com>
-
- 09 Feb, 2018 1 commit
-
-
Serhiy Storchaka authored
Co-authored-by: Jake Davis <jcdavis@awedge.net>. (cherry picked from commit 2411292b)
-
- 07 Feb, 2018 2 commits
-
-
Stéphane Wirtel authored
Use `f` as the name of the first parameter of `csv.DictReader` and `csv.DictWriter` classes.
-
INADA Naoki authored
-
- 06 Feb, 2018 1 commit
-
-
Benjamin Peterson authored
strop is highly legacy and can be safely compiled out in most installations. Let's not fail the test suite for its absence.
-
- 04 Feb, 2018 1 commit
-
-
Raymond Hettinger authored
-
- 03 Feb, 2018 2 commits
-
-
Raymond Hettinger authored
Manual backport of GH-5485
-
Ned Deily authored
-
- 02 Feb, 2018 2 commits
-
-
Mariatta authored
Clarify that the level argument is used to determine whether to perform absolute or relative imports: 0 is absolute, while a positive number is the number of parent directories to search relative to the current module.. (cherry picked from commit 461d225b) Co-authored-by: oldk <oldk1331@users.noreply.github.com>
-
Serhiy Storchaka authored
instead of crashing due to a stack overflow. This perhaps will fix similar problems in other extension types. (cherry picked from commit 1fb72d2a)
-
- 29 Jan, 2018 2 commits
-
-
Victor Stinner authored
_test_multiprocessing.test_queue_feeder_donot_stop_onexc() now uses a timeout of 1 second on Queue.get(), instead of 0.1 second, for slow buildbots. (cherry picked from commit 8f6eeaf2)
-
Bo Bayles authored
Patch by Bo Bayles.
-
- 28 Jan, 2018 2 commits
-
-
Miss Islington (bot) authored
It will be triggered when propagating an exception. (cherry picked from commit 79db11ce)
-
Miss Islington (bot) authored
(cherry picked from commit 9ed0aee2)
-
- 27 Jan, 2018 1 commit
-
-
Christian Heimes authored
The nismodule is now compatible with new libnsl and headers location Signed-off-by: Christian Heimes <christian@python.org>. (cherry picked from commit 29a7df78)
-
- 26 Jan, 2018 1 commit
-
-
Mariatta authored
In str.join, if any of the iterable contains a Unicode object, str.join will return a Unicode object. A Type error will be raised if iterable contains values other than a string or Unicode object.
-
- 25 Jan, 2018 1 commit
-
-
Victor Stinner authored
test_subprocess.test_leaking_fds_on_error() failed when the PATH environment variable contains a path to an existing file. Fix the test: ignore also ENOTDIR, not only ENOENT and EACCES.
-
- 24 Jan, 2018 2 commits
-
-
Xiang Zhang authored
(cherry picked from commit 131fd7f9)
-
Miss Islington (bot) authored
glibc is deprecating libcrypt in favor of libxcrypt, however python assumes that crypt.h will always be included. This change makes the header inclusion explicit when libxcrypt is present on the system. (cherry picked from commit e768c86e)
-