summaryrefslogtreecommitdiffstats
path: root/README.rst
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2019-09-26 16:23:17 (GMT)
committerGitHub <noreply@github.com>2019-09-26 16:23:17 (GMT)
commit9f77268f901cc3e8874e5042361520a0e482476a (patch)
tree9629135114946800fb0ad06c27d9df1a1d23b21a /README.rst
parentdf6ac7e2b82d921a6e9ff5571b40c6dbcf635581 (diff)
downloadcpython-9f77268f901cc3e8874e5042361520a0e482476a.zip
cpython-9f77268f901cc3e8874e5042361520a0e482476a.tar.gz
cpython-9f77268f901cc3e8874e5042361520a0e482476a.tar.bz2
bpo-38275: Fix test_ssl issue caused by GH-16386 (#16428)
Check presence of SSLContext.minimum_version to make tests pass with old versions of OpenSSL. Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'README.rst')
0 files changed, 0 insertions, 0 deletions
| sqlite3.connect() to bytes (GH-93046) (GH-93048) Just pass it to the factory as is. (cherry picked from commit 14c0d33016a967a98155f2e1615660e9328aef5d) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> * gh-71223: Improve rendering of some references in the docs (GH-93041)Miss Islington (bot)2022-05-217-9/+16 | | | | | | | For example, instead of "eval()uated" (link from "eval()") show "evaluated" (link from the whole word). (cherry picked from commit 7f835923c179d1d2da54b232e0113abc2c56ea31) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> * gh-93019: Fix markup in zipfile.rst (GH-93025)Miss Islington (bot)2022-05-211-1/+1 | | | | | | Fixes GH-93019 (cherry picked from commit 2fadde7e6645e45e090b0187c28877300b07cba3) Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com> * Take advantage of math.comb() in the nth_combination() recipe (GH-93027) ↵Miss Islington (bot)2022-05-201-6/+2 | | | | (#93032) * [3.11] gh-72073: Add Windows case in pathlib.rename (GH-93002) (GH-93028)Miss Islington (bot)2022-05-201-2/+3 | | | | | | | | | | | GH-72073 https://docs.python.org/3.12/library/pathlib.htmlGH-pathlib.Path.rename (cherry picked from commit f51ed04c663417f88e10eeb21dad23250358bafa) Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com> Automerge-Triggered-By: GH:brettcannon * gh-92611: Clarify planned removal version in PEP 594-deprecated modules ↵Miss Islington (bot)2022-05-2022-25/+25 | | | | | | | | | | (GH-92793) (GH-93026) As discussed in GH-92611 and GH-92564 and as a followup to PR GH-92612 , this 3.11+ only PR uses the proper `deprecated-removed` role for the modules deprecated by PEP 593 (PEP-594) to clearly indicate to users that a removal version is planned and what it is, so they can prepare accordingly or voice any unanticipated impacts. Related to GH-92792 ; if we decide to backport that PR, the upgrade to using `deprecated-removed` on those functions can be moved to this one. (cherry picked from commit 31fa41ed689528505c0e0cf25777773b7e81c834) Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM> * gh-91860: documentation for typing.dataclass_transform (GH-92768)Miss Islington (bot)2022-05-203-12/+84 | | | | | | Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> (cherry picked from commit f20a6a54fb041507a334ad71706974960d1b473f) Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com> * gh-91922: Fix sqlite connection on nonstardard locales and paths (GH-92926)Miss Islington (bot)2022-05-204-64/+40 | | | | | (cherry picked from commit d8537580921b2e02f477ff1a8dedcf82c24ef0c2) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> * Doc: add missing manpage and title references in tkinter docs (GH-29008)Miss Islington (bot)2022-05-201-2/+3 | | | | | | | - add bind(3tk) manpage markup - add Tcl/Tk book reference markup (cherry picked from commit 0e12781ad9dec6e46ccb85969c0eb7be1ecad81d) Co-authored-by: Rafael Fontenelle <rffontenelle@users.noreply.github.com> * gh-92817: Fix precedence of options to py.exe launcher (GH-92988)Miss Islington (bot)2022-05-193-11/+49 | | | | | (cherry picked from commit 73473fdeac3ff9d75ac9d189bb8552b7459812f1) Co-authored-by: Steve Dower <steve.dower@python.org> * gh-92984: Explicitly disable incremental linking for Windows Release and PGO ↵Miss Islington (bot)2022-05-192-0/+2 | | | | | | | builds (GH-92985) (cherry picked from commit 38feffa09c74d9a853745908b7813903bae33b96) Co-authored-by: David Machaj <46852402+dmachaj@users.noreply.github.com> * gh-92913: Clarify changes to PyInitConfig.module_search_paths[_set] fields ↵Miss Islington (bot)2022-05-195-8/+39 | | | | | | | (GH-92980) (cherry picked from commit 403d16fa28764718dcd0536ccb3ab8d05768465d) Co-authored-by: Steve Dower <steve.dower@python.org> * bpo-28249: fix `lineno` location for empty `DocTest` instances (GH-30498) ↵Miss Islington (bot)2022-05-194-6/+83 | | | | | | | | | | (GH-92978) (cherry picked from commit 8db2b3b6878aba9f12844526bce966b7eed81aee) Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> Co-authored-by: Łukasz Langa <lukasz@langa.pl> Co-authored-by: Nikita Sobolev <mail@sobolevn.me> * gh-78630: Drop invalid HP aCC compiler switch -fPIC on HP-UX (GH-8847)Miss Islington (bot)2022-05-192-3/+1 | | | | | | | | At compile time, '+z' is already properly used with HP aCC, and shared libraries are correctly linked with '+b'. The '-fPIC' switch can safely be dropped. (cherry picked from commit 09be18a73d81aa82cc57a782f3b0a9811e43ad3b) Co-authored-by: Michael Osipov <michael.osipov@siemens.com> * gh-92417: `importlib` docs: remove references to unsupported Python versions ↵Miss Islington (bot)2022-05-19