Skip to content

Commit 19ecb5c

Browse files
committed
Merge tag 'v3.7.5rc1' into 3.7
2 parents 874dae4 + 4082f60 commit 19ecb5c

File tree

138 files changed

+1403
-295
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+1403
-295
lines changed

Include/patchlevel.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
/*--start constants--*/
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 7
21-
#define PY_MICRO_VERSION 4
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
23-
#define PY_RELEASE_SERIAL 0
21+
#define PY_MICRO_VERSION 5
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23+
#define PY_RELEASE_SERIAL 1
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.7.4+"
26+
#define PY_VERSION "3.7.5rc1"
2727
/*--end constants--*/
2828

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

Lib/pydoc_data/topics.py

Lines changed: 55 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Tue Jun 18 16:49:39 2019
2+
# Autogenerated by Sphinx on Tue Oct 1 13:12:46 2019
33
topics = {'assert': 'The "assert" statement\n'
44
'**********************\n'
55
'\n'
@@ -5365,17 +5365,19 @@
53655365
' | | significand, and the decimal point is also '
53665366
'removed if |\n'
53675367
' | | there are no remaining digits following '
5368-
'it. Positive and |\n'
5369-
' | | negative infinity, positive and negative '
5370-
'zero, and nans, |\n'
5371-
' | | are formatted as "inf", "-inf", "0", "-0" '
5372-
'and "nan" |\n'
5373-
' | | respectively, regardless of the '
5374-
'precision. A precision of |\n'
5375-
' | | "0" is treated as equivalent to a '
5376-
'precision of "1". The |\n'
5377-
' | | default precision is '
5378-
'"6". |\n'
5368+
'it, unless the |\n'
5369+
' | | "\'#\'" option is used. Positive and '
5370+
'negative infinity, |\n'
5371+
' | | positive and negative zero, and nans, are '
5372+
'formatted as |\n'
5373+
' | | "inf", "-inf", "0", "-0" and "nan" '
5374+
'respectively, |\n'
5375+
' | | regardless of the precision. A precision '
5376+
'of "0" is |\n'
5377+
' | | treated as equivalent to a precision of '
5378+
'"1". The default |\n'
5379+
' | | precision is '
5380+
'"6". |\n'
53795381
' '
53805382
'+-----------+------------------------------------------------------------+\n'
53815383
' | "\'G\'" | General format. Same as "\'g\'" except '
@@ -7078,10 +7080,10 @@
70787080
'| "x(arguments...)", "x.attribute" | '
70797081
'attribute reference |\n'
70807082
'+-------------------------------------------------+---------------------------------------+\n'
7081-
'| "(expressions...)", "[expressions...]", "{key: | '
7082-
'Binding or tuple display, list |\n'
7083-
'| value...}", "{expressions...}" | '
7084-
'display, dictionary display, set |\n'
7083+
'| "(expressions...)", "[expressions...]", "{key: | '
7084+
'Binding or parenthesized expression, |\n'
7085+
'| value...}", "{expressions...}" | list '
7086+
'display, dictionary display, set |\n'
70857087
'| | '
70867088
'display |\n'
70877089
'+-------------------------------------------------+---------------------------------------+\n'
@@ -7449,7 +7451,11 @@
74497451
' estimated length for the object (which may be greater '
74507452
'or less than\n'
74517453
' the actual length). The length must be an integer ">=" '
7452-
'0. This\n'
7454+
'0. The\n'
7455+
' return value may also be "NotImplemented", which is '
7456+
'treated the\n'
7457+
' same as if the "__length_hint__" method didn’t exist at '
7458+
'all. This\n'
74537459
' method is purely an optimization and is never required '
74547460
'for\n'
74557461
' correctness.\n'
@@ -9152,7 +9158,11 @@
91529158
' estimated length for the object (which may be greater or '
91539159
'less than\n'
91549160
' the actual length). The length must be an integer ">=" 0. '
9155-
'This\n'
9161+
'The\n'
9162+
' return value may also be "NotImplemented", which is '
9163+
'treated the\n'
9164+
' same as if the "__length_hint__" method didn’t exist at '
9165+
'all. This\n'
91569166
' method is purely an optimization and is never required '
91579167
'for\n'
91589168
' correctness.\n'
@@ -9989,13 +9999,15 @@
99899999
'\n'
999010000
' Return true if there are only whitespace characters in '
999110001
'the string\n'
9992-
' and there is at least one character, false otherwise. '
9993-
'Whitespace\n'
9994-
' characters are those characters defined in the Unicode '
9995-
'character\n'
9996-
' database as “Other” or “Separator” and those with '
9997-
'bidirectional\n'
9998-
' property being one of “WS”, “B”, or “S”.\n'
10002+
' and there is at least one character, false otherwise.\n'
10003+
'\n'
10004+
' A character is *whitespace* if in the Unicode character '
10005+
'database\n'
10006+
' (see "unicodedata"), either its general category is '
10007+
'"Zs"\n'
10008+
' (“Separator, space”), or its bidirectional class is one '
10009+
'of "WS",\n'
10010+
' "B", or "S".\n'
999910011
'\n'
1000010012
'str.istitle()\n'
1000110013
'\n'
@@ -12087,6 +12099,11 @@
1208712099
'therefore,\n'
1208812100
' custom mapping types should support too):\n'
1208912101
'\n'
12102+
' list(d)\n'
12103+
'\n'
12104+
' Return a list of all the keys used in the dictionary '
12105+
'*d*.\n'
12106+
'\n'
1209012107
' len(d)\n'
1209112108
'\n'
1209212109
' Return the number of items in the dictionary *d*.\n'
@@ -12243,11 +12260,21 @@
1224312260
'the\n'
1224412261
' documentation of view objects.\n'
1224512262
'\n'
12263+
' An equality comparison between one "dict.values()" '
12264+
'view and\n'
12265+
' another will always return "False". This also applies '
12266+
'when\n'
12267+
' comparing "dict.values()" to itself:\n'
12268+
'\n'
12269+
" >>> d = {'a': 1}\n"
12270+
' >>> d.values() == d.values()\n'
12271+
' False\n'
12272+
'\n'
1224612273
' Dictionaries compare equal if and only if they have the '
1224712274
'same "(key,\n'
12248-
' value)" pairs. Order comparisons (‘<’, ‘<=’, ‘>=’, ‘>’) '
12249-
'raise\n'
12250-
' "TypeError".\n'
12275+
' value)" pairs (regardless of ordering). Order comparisons '
12276+
'(‘<’,\n'
12277+
' ‘<=’, ‘>=’, ‘>’) raise "TypeError".\n'
1225112278
'\n'
1225212279
' Dictionaries preserve insertion order. Note that '
1225312280
'updating a key\n'

Mac/BuildScript/resources/ReadMe.rtf

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{\rtf1\ansi\ansicpg1252\cocoartf1671\cocoasubrtf500
1+
{\rtf1\ansi\ansicpg1252\cocoartf1671\cocoasubrtf600
22
{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fswiss\fcharset0 Helvetica-Bold;\f2\fswiss\fcharset0 Helvetica-Oblique;
33
\f3\fmodern\fcharset0 CourierNewPSMT;}
44
{\colortbl;\red255\green255\blue255;}
@@ -10,6 +10,16 @@
1010
\
1111
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0
1212

13+
\f1\b \cf0 \ul \ulc0 macOS 10.15 Catalina Support\
14+
\
15+
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\partightenfactor0
16+
17+
\f0\b0 \cf0 \ulnone At the time of the release of this release candidate, the next release of macOS,
18+
\f1\b 10.15 Catalina
19+
\f0\b0 , was still in public beta. Any updates needed to support 10.15 will be provided after it releases.\
20+
\
21+
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0
22+
1323
\f1\b \cf0 \ul \ulc0 Which installer variant should I use?
1424
\f0\b0 \ulnone \
1525
\
@@ -81,7 +91,7 @@ Other changes\
8191
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\partightenfactor0
8292
\cf0 \ulnone CHANGED in 3.7.4:
8393
\f0\b0 SQLite has been updated from 3.22.0 to 3.28.0
84-
\f1\b \ul \ulc0 \
94+
\f1\b \ul \
8595
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0
8696
8797
\f0\b0 \cf0 \ulnone \

Mac/BuildScript/resources/Welcome.rtf

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{\rtf1\ansi\ansicpg1252\cocoartf1671\cocoasubrtf500
1+
{\rtf1\ansi\ansicpg1252\cocoartf1671\cocoasubrtf600
22
\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fswiss\fcharset0 Helvetica-Bold;\f2\fmodern\fcharset0 CourierNewPSMT;
33
}
44
{\colortbl;\red255\green255\blue255;}
@@ -29,4 +29,8 @@ At the end of this install, click on
2929
\f1\b \
3030
CHANGED in 3.7.4:
3131
\f0\b0 OpenSSL 1.1.1, SQLite 3.28.0, 10.6+ 64-/32-bit installer variant deprecated\
32+
\
33+
At the time of the release of this release candidate, the next release of macOS,
34+
\f1\b 10.15 Catalina
35+
\f0\b0 , was still in public beta. Any updates needed to support 10.15 will be provided after it releases.\
3236
}

0 commit comments

Comments
 (0)