Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v3.7.0b3
/
Lib
tag
aa8b7b7c6c1dbe44789745108396b20b85dbec39
tagger
Ned Deily <nad@python.org>
Thu Mar 29 11:59:02 2018
object
4e7efa9c6f3518c4dd4c332cf7929168e7d44e25
Python 3.7.0b3
4e7efa9
3.7.0b3
by Ned Deily
· 7 years ago
v3.7.0b3
fd93666
[3.7] Fix duplicating words words. (GH-6296) (GH-6297)
by Serhiy Storchaka
· 7 years ago
d2d5bd8
bpo-32872: Avoid regrtest compatibility issue with namespace packages. (GH-6276) (#6277)
by Miss Islington (bot)
· 7 years ago
211c0db
Fix senfile typo (GH-6265) (#6274)
by Miss Islington (bot)
· 7 years ago
6a2539c
bpo-32517: re-enable test_read_pty_output on macOS (GH-6112)
by Ned Deily
· 7 years ago
fd1b8f8
bpo-33151: Handle submodule resources (GH-6268) (GH-6270)
by Miss Islington (bot)
· 7 years ago
f328caf
bpo-27212: Modify islice recipe to consume initial values preceding start (GH-6195) (#GH-6266)
by Miss Islington (bot)
· 7 years ago
d0e04c8
bpo-32873: Treat type variables and special typing forms as immutable by copy and pickle (GH-6216)
by Miss Islington (bot)
· 7 years ago
0545563
bpo-32844: Fix a subprocess misredirection of a low fd (GH5689)
by Miss Islington (bot)
· 7 years ago
c6147ac
bpo-33141: Have dataclasses.Field pass through __set_name__ to any default argument. (GH-6260)
by Miss Islington (bot)
· 7 years ago
a7b1b84
bpo-33096: Fix ttk.Treeview.insert. (GH-6228)
by Miss Islington (bot)
· 7 years ago
5fc6fc8
Minor fixes to dataclass tests. (GH-6243)
by Miss Islington (bot)
· 7 years ago
ee37845
bpo-33053: -m now adds *starting* directory to sys.path (GH-6231) (#6236)
by Nick Coghlan
· 7 years ago
5666a55
Trivial improvements to dataclasses tests. (GH-6234)
by Miss Islington (bot)
· 7 years ago
2dd885e
[3.7] bpo-33136: Harden ssl module against CVE-2018-8970 (GH-6229) (GH-6230)
by Miss Islington (bot)
· 7 years ago
c6d94c3
bpo-33042: Fix pre-initialization sys module configuration (GH-6157)
by Miss Islington (bot)
· 7 years ago
291d5f3
bpo-32943: Fix confusing error message for rot13 codec (GH-5869)
by Miss Islington (bot)
· 7 years ago
5729b9c
Fix invalid escape sequence: use raw string. (GH-6225)
by Miss Islington (bot)
· 7 years ago
9989efb
bpo-33134: dataclasses: use function dispatch table for hash, instead of a string lookup which then is tested with if tests. (GH-6222)
by Miss Islington (bot)
· 7 years ago
02c19a6
Trivial dataclass cleanups: (GH-6218)
by Miss Islington (bot)
· 7 years ago
1a0bb62
[3.7] bpo-24334: Remove inaccurate match_hostname call (GH-6211) (#6212)
by Miss Islington (bot)
· 7 years ago
ac56027
bpo-33061: Add missing 'NoReturn' to __all__ in typing.py (GH-6127) (#6162)
by Ivan Levkivskyi
· 7 years ago
f8d2c3c
bpo-31639: Use threads in http.server module. (GH-5018)
by Miss Islington (bot)
· 7 years ago
b9744e9
bpo-33041: Fixed jumping if the function contains an "async for" loop. (GH-6154)
by Serhiy Storchaka
· 7 years ago
3b4c6b1
bpo-32505: dataclasses: raise TypeError if a member variable is of type Field, but doesn't have a type annotation. (GH-6192)
by Miss Islington (bot)
· 7 years ago
346964b
bpo-33018: Improve issubclass() error checking and message. (GH-5944)
by Miss Islington (bot)
· 7 years ago
8f46176
Upgrade pip to v9.0.3 and setuptools to v39.0.1 (GH-6184)
by Miss Islington (bot)
· 7 years ago
4ddc99d
bpo-33116: Add 'Field' to dataclasses.__all__. (GH-6182) (GH-6183)
by Miss Islington (bot)
· 7 years ago
f5625d5
FIX failure on OSX sem_getvalue (GH-6180) (GH-6181)
by Miss Islington (bot)
· 7 years ago
bb5b529
bpo-33078 - Fix queue size on pickling error (GH-6119) (GH-6178)
by Miss Islington (bot)
· 7 years ago
22136c9
bpo-32896: Fix error when subclassing a dataclass with a field that uses a default_factory (GH-6170) (GH-6171)
by Miss Islington (bot)
· 7 years ago
3326c92
bpo-27683: Fix a regression for host() of ipaddress network objects (GH-6016)
by Miss Islington (bot)
· 7 years ago
a323eee
bpo-18802: Add more details to ipaddress documentation (GH-6083)
by Miss Islington (bot)
· 7 years ago
3d41f48
bpo-33100: Dataclasses now handles __slots__ and default values correctly. (GH-6152) (GH-6153)
by Miss Islington (bot)
· 7 years ago
4564831
bpo-32953: Dataclasses: frozen should not be inherited for non-dataclass derived classes (GH-6147) (GH-6148)
by Miss Islington (bot)
· 7 years ago
3c0a5a7
bpo-32056: Improve exceptions in aifc, wave and sunau. (GH-5951)
by Miss Islington (bot)
· 7 years ago
fdd8e8b
bpo-19417: Add test_bdb.py (GH-5217)
by Miss Islington (bot)
· 7 years ago
a90df50
Revert "bpo-30406: Make async and await proper keywords (GH-1669)" (GH-6143)
by Miss Islington (bot)
· 7 years ago
773573e
[3.7] bpo-33041: Add tests for jumps in/out of 'async with' blocks. (GH-6110). (GH-6140)
by Serhiy Storchaka
· 7 years ago
429ca44
bpo-27645: Fix version number in 'database in transaction' fallback (GH-6131)
by Miss Islington (bot)
· 7 years ago
d7b8103
Update pip to 9.0.2 and setuptools to 38.6.1 (GH-6133) (#6134)
by Miss Islington (bot)
· 7 years ago
136905f
bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)
by Miss Islington (bot)
· 7 years ago
7d0528d
lib2to3: Add more tests (GH-6101) (#6108)
by Miss Islington (bot)
· 7 years ago
f216cbf
bpo-33056 FIX leaking fd in concurrent.futures.ProcessPoolExecutor (GH-6084) (#6092)
by Miss Islington (bot)
· 7 years ago
e32bbaf
[3.7] bpo-17288: Prevent jumps from 'return' and 'exception' trace events. (GH-5928)
by xdegaye
· 7 years ago
b4c8871
bpo-33064: lib2to3: support trailing comma after *args and **kwargs (GH-6096) (#6097)
by Miss Islington (bot)
· 7 years ago
ff5d213
bpo-31804: Fix multiprocessing.Process with broken standard streams (GH-6079) (GH-6080)
by Miss Islington (bot)
· 7 years ago
04aadf2
[3.7] bpo-33026: Fix jumping out of "with" block by setting f_lineno. (GH-6026). (#6074)
by Serhiy Storchaka
· 7 years ago
39441fc
bpo-32338: OrderedDict import is no longer needed in re. (GH-4891)
by Miss Islington (bot)
· 7 years ago
c546a62
bpo-27645: Skip test_bad_target_in_transaction if SQLite == 3.8.7.1 (GH-6067)
by Miss Islington (bot)
· 7 years ago
e8a5a92
bpo-27645: Add support for native backup facility of SQLite (GH-4238)
by Miss Islington (bot)
· 7 years ago
bf0d116
bpo-33037: Skip sending/receiving after SSL transport closing (GH-6044) (GH-6057)
by Miss Islington (bot)
· 7 years ago
3c39beb
bpo-32517: fix test_read_pty_output() hangs on macOS 10.13.2+ (GH-6037)
by Miss Islington (bot)
· 7 years ago
d824b4e
bpo-32999: Fix ABC.__subclasscheck__ crash (GH-6002)
by Miss Islington (bot)
· 7 years ago
c4d77a6
bpo-32969: Expose some missing constants in zlib and fix the doc (GH-5988)
by Miss Islington (bot)
· 7 years ago
112f799
bpo-33009: Fix inspect.signature() for single-parameter partialmethods. (GH-6004)
by Miss Islington (bot)
· 7 years ago
5a0c398
bpo-32991: Restore expectation that inspect.getfile raises TypeError on namespace package (GH-5980) (GH-5997)
by Miss Islington (bot)
· 7 years ago
96fdbac
bpo-33001: Prevent buffer overrun in os.symlink (GH-5989)
by Miss Islington (bot)
· 7 years ago
fd340bf
bpo-32984: IDLE - set __file__ for startup files (GH-5981)
by Miss Islington (bot)
· 7 years ago
a5303dd
bpo-32857: Raise error when tkinter after_cancel() is called with None. (GH-5701)
by Miss Islington (bot)
· 7 years ago
0902a2d
bpo-32981: Fix catastrophic backtracking vulns (GH-5955)
by Miss Islington (bot)
· 7 years ago
a13b654
bpo-32964: Reuse a testing implementation of the path protocol in tests. (GH-5930)
by Miss Islington (bot)
· 7 years ago
398242a
Fixed incorrect default value for dataclass unsafe_hash. (GH-5949) (GH-5950)
by Miss Islington (bot)
· 7 years ago
7e57634
bpo-32940: IDLE: Simplify StringTranslatePseudoMapping in pyparse (GH-5862)
by Miss Islington (bot)
· 7 years ago
b0ef5c9
Update NEWS, docs, and patchlevel for 3.7.0b2
by Ned Deily
· 7 years ago
v3.7.0b2
0ea49fc
bpo-30928: Update idlelib/NEWS.txt, possibly for 3.7.0b2 (GH-5932)
by Miss Islington (bot)
· 7 years ago
b7dcae3
Revert "bpo-31961: subprocess now accepts path-like args (GH-4329)" (GH-5912) (GH-5931)
by Miss Islington (bot)
· 7 years ago
4c842b0
bpo-31453: Add setter for min/max protocol version (GH-5259)
by Miss Islington (bot)
· 7 years ago
89c2051
[3.7] bpo-32951: Disable SSLSocket/SSLObject constructor (GH-5864) (#5925)
by Christian Heimes
· 7 years ago
2614ed4
bpo-32947: OpenSSL 1.1.1-pre1 / TLS 1.3 fixes (GH-5663)
by Miss Islington (bot)
· 7 years ago
a93e3dc
bpo-32960: For dataclasses, disallow inheriting frozen from non-frozen classes and vice-versa, (GH-5919) (GH-5920)
by Miss Islington (bot)
· 7 years ago
a9a8a98
bpo-32713: Fix tarfile.itn for large/negative float values. (GH-5434)
by Miss Islington (bot)
· 7 years ago
51d95ff
bpo-32222: Fix pygettext skipping docstrings for funcs with arg typehints (GH-4745)
by Miss Islington (bot)
· 7 years ago
53d3f8a
bpo-32394: Remove some TCP options on old version Windows. (GH-5523)
by Miss Islington (bot)
· 7 years ago
f8a3485
Revert unneccessary changes made in bpo-30296 and apply other improvements. (GH-2624)
by Miss Islington (bot)
· 7 years ago
a9e0b07
bpo-32922: dbm.open() now encodes filename with the filesystem encoding. (GH-5832)
by Miss Islington (bot)
· 7 years ago
4cffe2f
bpo-32929: Dataclasses: Change the tri-state hash parameter to the boolean unsafe_hash. (GH-5891) (GH-5902)
by Miss Islington (bot)
· 7 years ago
1a57906
Fix 'deecorator' typo in test/test_dataclasses (GH-5899)
by Miss Islington (bot)
· 7 years ago
632c1cb
bpo-32622: Native sendfile on windows (GH-5565)
by Miss Islington (bot)
· 7 years ago
b6b6669
Exhaustively test dataclass hashing when no hash= value is provided. This is in anticipation of changing how non-default hashing is handled. (GH-5834) (GH-5889)
by Miss Islington (bot)
· 7 years ago
83f4394
Delete a broken threading.local example (GH-5870)
by Miss Islington (bot)
· 7 years ago
ff7528f
[3.7] bpo-31809: test secp ECDH curves (GH-4036) (#5872)
by Miss Islington (bot)
· 7 years ago
8fa8478
[3.7] bpo-24334: Cleanup SSLSocket (GH-5252) (#5857)
by Miss Islington (bot)
· 7 years ago
e49bf0f
bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754)
by Miss Islington (bot)
· 7 years ago
46632f4
[3.7] bpo-32819: Simplify and improve ssl.match_hostname (GH-5620) (#5847)
by Miss Islington (bot)
· 7 years ago
1c37e27
[bpo-28414] Make all hostnames in SSL module IDN A-labels (GH-5128) (GH-5843)
by Miss Islington (bot)
· 7 years ago
f409c99
bpo-32916: IDLE: Change `str` to `code` in pyparse (GH-5830)
by Miss Islington (bot)
· 7 years ago
8d9d4b5
bpo-32838: Fix Python versions in the table of magic numbers. (GH-5658)
by Miss Islington (bot)
· 7 years ago
694c5e0
bpo-30028: make test.support.temp_cwd() fork-safe (GH-1066)
by Miss Islington (bot)
· 7 years ago
24d6e3c
Test that new_timezone can return the UTC singleton (gh-5318) (#5819)
by Miss Islington (bot)
· 7 years ago
e5a9b35
bpo-32457: Improves handling of denormalized executable path when launching Python (GH-5756)
by Miss Islington (bot)
· 7 years ago
01dd52f
bpo-32556: nt._getfinalpathname, nt._getvolumepathname and nt._getdiskusage now correctly convert from bytes. (GH-5761)
by Miss Islington (bot)
· 7 years ago
dfa1144
bpo-32905: IDLE - remove unused code in pyparse module (GH-5807)
by Miss Islington (bot)
· 7 years ago
c59bc98
bpo-32874: IDLE: add tests for pyparse (GH-5755)
by Miss Islington (bot)
· 7 years ago
eed3c7a
bpo-32604: Swap threads only if the interpreter is different. (gh-5783)
by Miss Islington (bot)
· 7 years ago
1d927d4
bpo-31848: Fix broken error handling in Aifc_read.initfp() when the SSND chunk is not found (GH-5240)
by Miss Islington (bot)
· 7 years ago
a3d6c1b
bpo-32409: Ensures activate.bat can handle Unicode contents (GH-5765)
by Miss Islington (bot)
· 7 years ago
622a824
bpo-30121: Fix test_subprocess for Windows Debug builds (GH-5758)
by Miss Islington (bot)
· 7 years ago
0cd3581
bpo-32682: Improve libz version parsing in test_zilb (GH-5347)
by Miss Islington (bot)
· 7 years ago
2072c80
Improve error message for "setup.py upload" without dist files (GH-21060)
by Miss Islington (bot)
· 7 years ago
Next »