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-45811: Improve error message when source code contains invisible control ...
Pablo Galindo Salgado
2021-11-20
3
-0/+11
*
bpo-45450: Improve syntax error for parenthesized arguments (GH-28906)
Pablo Galindo Salgado
2021-11-20
4
-445/+893
*
bpo-44844: Remove unresponsive web link (GH-29651)
Terry Jan Reedy
2021-11-20
1
-3/+0
*
bpo-45494: Fix error location in EOF tokenizer errors (GH-29108)
Pablo Galindo Salgado
2021-11-20
1
-2/+7
*
bpo-45852: Fix the Counter/iter test for statistics.mode() (GH-29667)
Raymond Hettinger
2021-11-20
1
-4/+7
*
[doc] Clarify MRO precedence in descriptor super binding section (GH-29539)
Jouke Witteveen
2021-11-20
1
-1/+1
*
bpo-45851: Avoid full sort in statistics.multimode() (#29662)
Raymond Hettinger
2021-11-20
1
-3/+5
*
bpo-42158: Add MIME types for n-triples, n-quads, n3 and trig (GH-23230)
Dylan Van Assche
2021-11-20
2
-0/+5
*
bpo-45847: Port test modules to PY_STDLIB_MOD (GH-29660)
Christian Heimes
2021-11-20
5
-226/+380
*
bpo-45848: Allow the parser to get error lines from encoded files (GH-29646)
Pablo Galindo Salgado
2021-11-20
5
-11/+42
*
bpo-45774: Fix SQLite load extension autodetection (GH-29659)
Erlend Egeberg Aasland
2021-11-20
3
-10/+6
*
bpo-45846: Fix capitalisation of Van Rossum at the start of sentence (GH-29641)
JMcB
2021-11-20
1
-1/+1
*
bpo-45847: Port _scproxy to PY_STDLIB_MOD (GH-29644)
Christian Heimes
2021-11-20
5
-7/+74
*
bpo-45250: fix docs regarding `__iter__` and iterators being inconsistently r...
Brett Cannon
2021-11-20
7
-47/+51
*
bpo-45506: Fix test_embed expecting to not find stdlib in source tree build w...
Steve Dower
2021-11-20
1
-6/+11
*
bpo-45727: Make the syntax error for missing comma more consistent (GH-29427)
Pablo Galindo Salgado
2021-11-19
4
-24/+27
*
bpo-45847: Port builtin hashlib extensions to PY_STDLIB_MOD (GH-29642)
Christian Heimes
2021-11-19
5
-82/+451
*
bpo-19072: Classmethod can wrap other classmethod like descriptors (GH-29634)
Raymond Hettinger
2021-11-19
1
-1/+8
*
bpo-42238: [doc]: Hide false positive in make suspicious. (GH-29636)
Julien Palard
2021-11-19
1
-0/+1
*
bpo-45507: EOFErrors should be thrown for truncated gzip members (GH-29029)
Ruben Vorderman
2021-11-19
3
-0/+12
*
bpo-45573: Move mandatory core modules to Modules/Setup.bootstrap (GH-29616)
Christian Heimes
2021-11-19
8
-36/+136
*
Fix link to exception handling notes (GH-29617)
Irit Katriel
2021-11-19
1
-1/+1
*
bpo-45709: Fix tracing when exception is handled. (GH-29638)
Mark Shannon
2021-11-19
3
-4/+35
*
bpo-45774: Autoconfiscate SQLite detection (GH-29507)
Erlend Egeberg Aasland
2021-11-19
8
-106/+355
*
bpo-45609: Specialize STORE_SUBSCR (GH-29242)
Dennis Sweeney
2021-11-19
10
-71/+241
*
bpo-45788: Link sys.prefix doc to 'Installation paths' (#29606)
Terry Jan Reedy
2021-11-18
3
-7/+7
*
bpo-45640: [docs] Tokens are now clickable (GH-29260)
Arthur Milchior
2021-11-18
4
-53/+56
*
[doc] bpo-45680: Disambiguate ``__getitem__`` and ``__class_getitem__`` in th...
Alex Waygood
2021-11-18
2
-18/+147
*
bpo-45837: Properly deprecate turtle.RawTurtle.settiltangle (GH-29618)
Hugo van Kemenade
2021-11-18
3
-10/+41
*
bpo-45573: Add Modules/Setup.stdlib with conditional modules (GH-29615)
Christian Heimes
2021-11-18
6
-2/+73
*
bpo-45829: Specialize BINARY_SUBSCR for __getitem__ implemented in Python. (G...
Mark Shannon
2021-11-18
7
-89/+145
*
bpo-45573: check for ossaudiodev in configure (GH-29614)
Christian Heimes
2021-11-18
4
-7/+75
*
bpo-45510: Specialize BINARY_SUBTRACT (GH-29523)
Dong-hee Na
2021-11-18
7
-50/+107
*
bpo-45512: Use Argument Clinic to set sqlite3 isolation level (GH-29593)
Erlend Egeberg Aasland
2021-11-18
2
-72/+67
*
bpo-45835: Fix race condition in test_queue (#29601)
Sam Gross
2021-11-18
2
-11/+12
*
bpo-45573: Introduce extension module flags in Makefile (GH-29594)
Christian Heimes
2021-11-18
8
-103/+435
*
bpo-45429: Merge whatsnew about time.sleep (GH-29589)
Dong-hee Na
2021-11-18
2
-11/+11
*
[docs] Add missing word "any" in unittest -k cmdline option description (GH-2...
ch33zer
2021-11-17
1
-1/+1
*
bpo-45826: Fix a crash in suggestions.c by checking for `traceback is None` (...
Dennis Sweeney
2021-11-17
3
-3/+43
*
bpo-42540: reallocation of id_mutex should not force default allocator (GH-29...
Sam Gross
2021-11-17
3
-1/+22
*
bpo-45831: _Py_DumpASCII() uses a single write() call if possible (GH-29596)
Victor Stinner
2021-11-17
2
-0/+27
*
bpo-45512: Simplify manage isolation level (GH-29562)
Dong-hee Na
2021-11-17
3
-41/+33
*
bpo-45512: Extend `sqlite3` test suite regarding isolation levels (GH-29576)
Erlend Egeberg Aasland
2021-11-17
2
-3/+124
*
bpo-28806: Continue work: improve the netrc library (GH-26330)
Emmanuel Arias
2021-11-17
4
-129/+319
*
bpo-45822: Respect PEP 263's coding cookies in the parser even if flags are n...
Pablo Galindo Salgado
2021-11-16
4
-1/+25
*
bpo-37800: Clean up importlib documentation for some module attributes (GH-10...
Géry Ogam
2021-11-16
1
-63/+77
*
bpo-45820: Fix a segfault when the parser fails without reading any input (GH...
Pablo Galindo Salgado
2021-11-16
2
-0/+10
*
bpo-45126: Harden `sqlite3` connection initialisation (GH-28227)
Erlend Egeberg Aasland
2021-11-16
3
-62/+110
*
bpo-45636: Simplify BINARY_OP (GH-29565)
Brandt Bucher
2021-11-16
4
-83/+51
*
bpo-45429: Support CREATE_WAITABLE_TIMER_HIGH_RESOLUTION if possible (GH-29203)
Dong-hee Na
2021-11-16
3
-9/+37
[next]