index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-36443: Disable C locale coercion and UTF-8 Mode by default (GH-12589)
Victor Stinner
2019-03-27
1
-4/+1
*
bpo-31904: Fix test_utf8_mode on VxWorks (GH-12428)
hliu0
2019-03-27
1
-2/+2
*
bpo-36407: Fix writing indentations of CDATA section (xml.dom.minidom). (GH-1...
Vladimir Surjaninov
2019-03-27
1
-0/+16
*
bpo-36444: Add _PyCoreConfig._init_main (GH-12572)
Victor Stinner
2019-03-27
1
-0/+1
*
bpo-36444: Remove _PyMainInterpreterConfig (GH-12571)
Victor Stinner
2019-03-27
1
-29/+0
*
bpo-36301: Test Python init with isolated (GH-12569)
Victor Stinner
2019-03-26
1
-0/+20
*
bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563)
Victor Stinner
2019-03-26
1
-8/+9
*
bpo-36433: fix confusing error messages in classmethoddescr_call (GH-12556)
Inada Naoki
2019-03-26
1
-3/+18
*
bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546)
Victor Stinner
2019-03-26
1
-17/+28
*
bpo-36301: Add _Py_GetConfigsAsDict() function (GH-12540)
Victor Stinner
2019-03-25
2
-46/+79
*
bpo-36143: Regenerate Lib/keyword.py from the Grammar and Tokens file using p...
Pablo Galindo
2019-03-25
1
-110/+9
*
bpo-36326: Let inspect.getdoc() find docstrings for __slots__ (GH-12498)
Raymond Hettinger
2019-03-25
2
-1/+10
*
bpo-36218: Fix handling of heterogeneous values in list.sort (GH-12209)
Rémi Lapeyre
2019-03-25
1
-0/+5
*
bpo-36401: Have help() show readonly properties separately (GH-12517)
Raymond Hettinger
2019-03-25
1
-1/+1
*
bpo-36298: Raise ModuleNotFoundError in pyclbr when a module can't be found (...
Brett Cannon
2019-03-22
1
-2/+22
*
bpo-30670: Add pp function to the pprint module (GH-11769)
Rémi Lapeyre
2019-03-22
1
-0/+7
*
asyncio: PendingDeprecationWarning -> DeprecationWarning (GH-12494)
Inada Naoki
2019-03-22
1
-9/+9
*
Raise the timeout in test_multiprocessing_* for slow buildbots (GH-12489)
Pablo Galindo
2019-03-22
1
-1/+1
*
bpo-36256: Fix bug in parsermodule when parsing if statements (GH-12477)
Pablo Galindo
2019-03-21
1
-0/+4
*
bpo-35978: Correctly skips venv tests in venvs (GH-12220)
Steve Dower
2019-03-21
1
-5/+10
*
bpo-36268: Change default tar format to pax from GNU. (GH-12355)
CAM Gerlach
2019-03-21
1
-5/+6
*
bpo-36324: NormalDist() add more tests and update comments (GH-12476)
Raymond Hettinger
2019-03-20
1
-24/+44
*
bpo-36285: Fix integer overflow in the array module. (GH-12317)
sth
2019-03-20
1
-0/+141
*
bpo-36312: Fix decoders for some code pages. (GH-12369)
Serhiy Storchaka
2019-03-20
1
-0/+9
*
bpo-36324: Add inv_cdf() to statistics.NormalDist() (GH-12377)
Raymond Hettinger
2019-03-19
1
-0/+63
*
bpo-36332: Allow compile() to handle AST objects with assignment expressions ...
Pablo Galindo
2019-03-18
1
-0/+11
*
bpo-36321: Fix misspelled attribute in namedtuple() (GH-12375)
Raymond Hettinger
2019-03-18
1
-6/+6
*
bpo-36297: remove "unicode_internal" codec (GH-12342)
Inada Naoki
2019-03-18
3
-179/+30
*
bpo-34745: Fix asyncio sslproto memory issues (GH-12386)
Fantix King
2019-03-17
1
-0/+72
*
bpo-36301: _PyCoreConfig_Read() ensures that argv is not empty (GH-12347)
Victor Stinner
2019-03-15
1
-1/+1
*
bpo-36272: Logging now propagates RecursionError (GH-12312)
Rémi Lapeyre
2019-03-15
1
-1/+16
*
bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-1...
Serhiy Storchaka
2019-03-14
1
-0/+1263
*
bpo-36282: Improved error message for too much positional arguments. (GH-12310)
Serhiy Storchaka
2019-03-13
1
-1/+1
*
bpo-36280: Add Constant.kind field (GH-12295)
Guido van Rossum
2019-03-13
1
-44/+62
*
Fix stepping into a frame without a __name__ (GH-12064)
Anthony Sottile
2019-03-13
1
-0/+7
*
bpo-35661: Fix failing test on buildbot (GH-12297)
Cheryl Sabella
2019-03-13
1
-4/+6
*
bpo-36264: Don't honor POSIX HOME in os.path.expanduser on Windows (GH-12282)
Anthony Sottile
2019-03-12
2
-10/+12
*
bpo-30040: new empty dict uses key-sharing dict (GH-1080)
Inada Naoki
2019-03-12
2
-4/+6
*
bpo-35892: Fix mode() and add multimode() (#12089)
Raymond Hettinger
2019-03-12
1
-8/+19
*
bpo-35931: Gracefully handle any exception in pdb debug command (GH-12103)
Daniel Hahler
2019-03-12
1
-4/+18
*
bpo-36234: Add more tests to PosixUidGidTests (GH-12234)
Victor Stinner
2019-03-11
1
-8/+20
*
bpo-35647: Fix path check in cookiejar (#11436)
Xtreak
2019-03-10
1
-0/+24
*
bpo-35121: prefix dot in domain for proper subdomain validation (GH-10258)
Xtreak
2019-03-10
1
-0/+30
*
closes bpo-33376: Update to Unicode 12.0.0. (GH-12256)
Benjamin Peterson
2019-03-10
1
-2/+2
*
Rework integer overflow path in math.prod and add more tests (GH-11809)
Pablo Galindo
2019-03-09
1
-35/+86
*
bpo-35661: Store the venv prompt in pyvenv.cfg (GH-11440)
Cheryl Sabella
2019-03-08
1
-0/+6
*
bpo-35843: Implement __getitem__ for _NamespacePath (GH-11690)
Anthony Sottile
2019-03-08
1
-0/+6
*
bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)
Guido van Rossum
2019-03-07
2
-42/+103
*
bpo-36216: Add check for characters in netloc that normalize to separators (G...
Steve Dower
2019-03-07
1
-0/+23
*
Refine statistics.NormalDist documentation and improve test coverage (GH-12208)
Raymond Hettinger
2019-03-07
1
-1/+2
[next]