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
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-34400: Fix more undefined behavior in parsetok.c (GH-8833)
Zackery Spytz
2018-08-21
1
-2/+4
*
bpo-34441: Fix ABC.__subclasscheck__ crash on classes with invalid __subclass...
Alexey Izbyshev
2018-08-20
3
-0/+36
*
bpo-30411: Use --git-dir instead of -C to make git work under version below 1...
Xiang Zhang
2018-08-20
2
-19/+7
*
bpo-34435: Add missing NULL check to unicode_encode_ucs1(). (GH-8823)
Alexey Izbyshev
2018-08-19
1
-2/+3
*
bpo-22057: Clarify eval() documentation (GH-8812)
Berker Peksag
2018-08-19
1
-2/+4
*
bpo-34318: Convert deprecation warnings to errors in assertRaises() etc. (GH-...
Serhiy Storchaka
2018-08-19
3
-19/+17
*
bpo-22602: Raise an exception in the UTF-7 decoder for ill-formed sequences s...
Zackery Spytz
2018-08-19
4
-0/+13
*
bpo-34415: Updated logging.Formatter docstring. (GH-8811)
Vinay Sajip
2018-08-19
1
-1/+2
*
bpo-34432: doc Mention complex and decimal.Decimal on str.format not about lo...
Andrés Delfino
2018-08-18
1
-7/+8
*
bpo-34381: refer to 'Running & Writing Tests' in README.rst (GH-8797)
Michael Osipov
2018-08-17
1
-0/+2
*
Improve error message when mock.assert_has_calls fails (GH-8205)
davidair
2018-08-17
2
-1/+4
*
Warn not to set SIGPIPE to SIG_DFL (#6773)
Alfred Perlstein
2018-08-17
1
-0/+34
*
bpo-34419: selectmodule.c does not compile on HP-UX due to bpo-31938 (GH-8796)
Michael Osipov
2018-08-17
1
-3/+1
*
bpo-34418: Fix HTTPErrorProcessor documentation (GH-8793)
Sebastian Rittau
2018-08-17
1
-2/+2
*
bpo-34391: Fix ftplib test for TLS 1.3 (GH-8787)
Christian Heimes
2018-08-16
2
-0/+6
*
bpo-34217: Use lowercase for windows headers (GH-8472)
Erik Janssens
2018-08-16
3
-3/+3
*
bpo-34395: Fix memory leaks caused by incautious usage of PyMem_Resize(). (GH...
Sergey Fedoseev
2018-08-16
2
-42/+22
*
bpo-34405: Updated to OpenSSL 1.1.0i for Windows builds. (GH-8775)
Steve Dower
2018-08-15
3
-4/+5
*
bpo-34384: Fix os.readlink() on Windows (GH-8740)
Berker Peksag
2018-08-15
4
-60/+86
*
closes bpo-34400: Fix undefined behavior in parsetok(). (GH-4439)
Zackery Spytz
2018-08-15
2
-1/+2
*
bpo-34399: 2048 bits RSA keys and DH params (#8762)
Christian Heimes
2018-08-14
5
-44/+47
*
Make regular expressions in test_tasks.py raw strings. (GH-8759)
Benjamin Peterson
2018-08-14
1
-2/+2
*
smtplib documentation fixes (GH-8708)
Ville Skyttä
2018-08-13
1
-4/+11
*
Fix misindented yaml in logging how to example (GH-8604)
Rémy HUBSCHER
2018-08-12
1
-3/+3
*
Minor code clean-up. Don't alter the input vector. Use variables instead. GH-...
Raymond Hettinger
2018-08-12
1
-4/+5
*
Add more tests and assertions for math.hypot() and math.dist() (GH-8747)
Raymond Hettinger
2018-08-12
2
-5/+13
*
bpo-34213: Allow dataclasses to work with a field named 'object'. (GH-8452)
Vadim Pushtaev
2018-08-12
3
-1/+58
*
Fix the versionadded indentation in exec_module doc (GH-8719)
Andrés Delfino
2018-08-12
1
-1/+1
*
Factor-out common code. Also, optimize common cases by preallocating space on...
Raymond Hettinger
2018-08-12
1
-41/+56
*
Replace straight addition with Kahan summation and move max to the end (GH-8727)
Raymond Hettinger
2018-08-11
1
-20/+45
*
bpo-34151: Improve performance of some list operations (GH-8332)
Sergey Fedoseev
2018-08-11
2
-15/+38
*
bpo-34379: Doc: Move note for json.dump (GH-8730)
Evan Allrich
2018-08-11
1
-6/+5
*
closes bpo-34377: Update Valgrind suppressions. (GH-8729)
Paul Price
2018-08-11
2
-11/+14
*
bpo-26818: Add a test to make sure the bug is fixed (GH-8664)
Berker Peksag
2018-08-11
1
-0/+22
*
bpo-9372: Deprecate several __getitem__ methods (GH-8609)
Berker Peksag
2018-08-11
12
-0/+82
*
bpo-34333: Fix %-formatting in Path.with_suffix() (GH-8663)
Berker Peksag
2018-08-11
3
-1/+5
*
bpo-34047: IDLE: fix mousewheel scrolling direction on macOS (GH-8678)
Tal Einat
2018-08-10
2
-6/+18
*
closes bpo-34353: Add sockets to stat.filemode fallback python implementation...
GPery
2018-08-10
3
-0/+12
*
Fixed inconsistency in string handling in the Task C implementation (GH-8717)
Alex Grönholm
2018-08-09
1
-5/+9
*
Doc: add missing capture_output arg to subprocess.run() signature (#8374)
Andriy Maletsky
2018-08-09
1
-2/+2
*
Improve grammar of asynchronous iterator glossary entry (GH-8657)
Andrés Delfino
2018-08-09
1
-3/+3
*
bpo-34324: Doc README wrong directory name for venv (GH-8650)
Stéphane Wirtel
2018-08-09
1
-1/+1
*
bpo-34270: Make it possible to name asyncio tasks (GH-8547)
Alex Grönholm
2018-08-08
13
-28/+266
*
Assume the raw environ is always declared. (GH-8707)
Benjamin Peterson
2018-08-08
1
-6/+0
*
Make code examples in Functional Programming HOWTO to be PEP 8 compliant. (GH...
Sergey Fedoseev
2018-08-07
1
-23/+23
*
bpo-34335: Use async/await syntax in documentation examples (GH-8674)
Mikhail Terekhov
2018-08-07
2
-4/+2
*
VSTS: Skip build steps when only docs have changed (GH-8546)
Steve Dower
2018-08-07
5
-1/+87
*
Remove unneeded PyErr_Clear() calls after PyErr_Print(). (GH-8699)
Zackery Spytz
2018-08-07
1
-3/+0
*
bpo-18540: Fix EAI_NONAME in imaplib.IMAP4*() (GH-8634)
Berker Peksag
2018-08-07
3
-1/+22
*
Fix HTML formatting in datamodel.rst (GH-8693)
Berker Peksag
2018-08-06
1
-3/+3
[next]