summaryrefslogtreecommitdiff
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* update doc (remove ref to activestate recipe)bind-socketGiampaolo Rodola2019-03-281-1/+0
* Merge branch 'master' into bind-socketGiampaolo Rodola2019-03-2841-580/+2400
|\
| * bpo-29515: add missing socket.IPPROTO_* constants on Windows (GH-12183)Giampaolo Rodola2019-03-281-0/+19
| * bpo-36452: dictiter: track maximum iteration count (GH-12596)Thomas Perl2019-03-281-0/+9
| * bpo-36443: Disable C locale coercion and UTF-8 Mode by default (GH-12589)Victor Stinner2019-03-271-4/+1
| * bpo-31904: Fix test_utf8_mode on VxWorks (GH-12428)hliu02019-03-271-2/+2
| * bpo-36407: Fix writing indentations of CDATA section (xml.dom.minidom). (GH-1...Vladimir Surjaninov2019-03-271-0/+16
| * bpo-36444: Add _PyCoreConfig._init_main (GH-12572)Victor Stinner2019-03-271-0/+1
| * bpo-36444: Remove _PyMainInterpreterConfig (GH-12571)Victor Stinner2019-03-271-29/+0
| * bpo-36301: Test Python init with isolated (GH-12569)Victor Stinner2019-03-271-0/+20
| * bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563)Victor Stinner2019-03-261-8/+9
| * bpo-36433: fix confusing error messages in classmethoddescr_call (GH-12556)Inada Naoki2019-03-261-3/+18
| * bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546)Victor Stinner2019-03-261-17/+28
| * bpo-36301: Add _Py_GetConfigsAsDict() function (GH-12540)Victor Stinner2019-03-252-46/+79
| * bpo-36143: Regenerate Lib/keyword.py from the Grammar and Tokens file using p...Pablo Galindo2019-03-251-110/+9
| * bpo-36326: Let inspect.getdoc() find docstrings for __slots__ (GH-12498)Raymond Hettinger2019-03-252-1/+10
| * bpo-36218: Fix handling of heterogeneous values in list.sort (GH-12209)Rémi Lapeyre2019-03-251-0/+5
| * bpo-36401: Have help() show readonly properties separately (GH-12517)Raymond Hettinger2019-03-241-1/+1
| * bpo-36298: Raise ModuleNotFoundError in pyclbr when a module can't be found (...Brett Cannon2019-03-221-2/+22
| * bpo-30670: Add pp function to the pprint module (GH-11769)Rémi Lapeyre2019-03-221-0/+7
| * asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494)Inada Naoki2019-03-221-9/+9
| * Raise the timeout in test_multiprocessing_* for slow buildbots (GH-12489)Pablo Galindo2019-03-221-1/+1
| * bpo-36256: Fix bug in parsermodule when parsing if statements (GH-12477)Pablo Galindo2019-03-211-0/+4
| * bpo-35978: Correctly skips venv tests in venvs (GH-12220)Steve Dower2019-03-211-5/+10
| * bpo-36268: Change default tar format to pax from GNU. (GH-12355)CAM Gerlach2019-03-211-5/+6
| * bpo-36324: NormalDist() add more tests and update comments (GH-12476)Raymond Hettinger2019-03-201-24/+44
| * bpo-36285: Fix integer overflow in the array module. (GH-12317)sth2019-03-201-0/+141
| * bpo-36312: Fix decoders for some code pages. (GH-12369)Serhiy Storchaka2019-03-201-0/+9
| * bpo-36324: Add inv_cdf() to statistics.NormalDist() (GH-12377)Raymond Hettinger2019-03-181-0/+63
| * bpo-36332: Allow compile() to handle AST objects with assignment expressions ...Pablo Galindo2019-03-181-0/+11
| * bpo-36321: Fix misspelled attribute in namedtuple() (GH-12375)Raymond Hettinger2019-03-181-6/+6
| * bpo-36297: remove "unicode_internal" codec (GH-12342)Inada Naoki2019-03-183-179/+30
| * bpo-34745: Fix asyncio sslproto memory issues (GH-12386)Fantix King2019-03-171-0/+72
| * bpo-36301: _PyCoreConfig_Read() ensures that argv is not empty (GH-12347)Victor Stinner2019-03-151-1/+1
| * bpo-36272: Logging now propagates RecursionError (GH-12312)Rémi Lapeyre2019-03-151-1/+16
| * bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-1...Serhiy Storchaka2019-03-141-0/+1263
| * bpo-36282: Improved error message for too much positional arguments. (GH-12310)Serhiy Storchaka2019-03-131-1/+1
| * bpo-36280: Add Constant.kind field (GH-12295)Guido van Rossum2019-03-131-44/+62
| * Fix stepping into a frame without a __name__ (GH-12064)Anthony Sottile2019-03-121-0/+7
| * bpo-35661: Fix failing test on buildbot (GH-12297)Cheryl Sabella2019-03-121-4/+6
| * bpo-36264: Don't honor POSIX HOME in os.path.expanduser on Windows (GH-12282)Anthony Sottile2019-03-122-10/+12
| * bpo-30040: new empty dict uses key-sharing dict (GH-1080)Inada Naoki2019-03-122-4/+6
| * bpo-35892: Fix mode() and add multimode() (#12089)Raymond Hettinger2019-03-121-8/+19
| * bpo-35931: Gracefully handle any exception in pdb debug command (GH-12103)Daniel Hahler2019-03-111-4/+18
| * bpo-36234: Add more tests to PosixUidGidTests (GH-12234)Victor Stinner2019-03-111-8/+20
| * bpo-35647: Fix path check in cookiejar (#11436)Xtreak2019-03-101-0/+24
| * bpo-35121: prefix dot in domain for proper subdomain validation (GH-10258)Xtreak2019-03-091-0/+30
| * closes bpo-33376: Update to Unicode 12.0.0. (GH-12256)Benjamin Peterson2019-03-091-2/+2
| * Rework integer overflow path in math.prod and add more tests (GH-11809)Pablo Galindo2019-03-091-35/+86
| * bpo-35661: Store the venv prompt in pyvenv.cfg (GH-11440)Cheryl Sabella2019-03-081-0/+6