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-45679: Fix caching of multi-value typing.Literal (GH-29334)
Serhiy Storchaka
2021-10-31
3
-6/+11
*
bpo-45666: fixes warning with `swprintf` and `%s` (GH-29307)
Nikita Sobolev
2021-10-31
2
-1/+2
*
Fix docs source link for importlib.metadata (GH-29025)
Philipp A
2021-10-30
1
-1/+1
*
bpo-10572: Move `sqlite3` tests to `Lib/test` (GH-29304)
Erlend Egeberg Aasland
2021-10-29
16
-22/+36
*
bpo-45379: clarify FROZEN_EXCLUDED and FROZEN_INVALID documentation (GH-29189)
Filipe Laíns
2021-10-29
1
-2/+7
*
bpo-45581: Raise `MemoryError` in `sqlite3.connect` if SQLite signals memory ...
Erlend Egeberg Aasland
2021-10-29
2
-0/+6
*
bpo-45600: Enhanced / clarified the docs for os.environ and os.environb (GH-2...
andrei kulakov
2021-10-29
1
-7/+8
*
bpo-45335: Add note to `sqlite3` docs about "timestamp" converter (GH-29200)
Ian Fisher
2021-10-29
1
-0/+6
*
bpo-45548: Some test modules must be built as shared libs (GH-29268)
Christian Heimes
2021-10-29
6
-13/+41
*
bpo-45655: Add ref to union type expressions at top of typing docs (GH-29309)
Alex Waygood
2021-10-29
1
-1/+2
*
bpo-45628: Check all parts of the suffix for an extension match. (GH-29310)
Vinay Sajip
2021-10-29
1
-2/+7
*
bpo-45621: Small changes to mmap (GH-29247)
Tim Golden
2021-10-29
2
-24/+21
*
bpo-45395: Make custom frozen modules additions instead of replacements. (gh-...
Eric Snow
2021-10-28
10
-129/+219
*
bpo-45577: test all pickle protocols in `test_zoneinfo` (GH-29167)
Nikita Sobolev
2021-10-28
2
-44/+54
*
bpo-45379: add custom error string for FROZEN_DISABLED (GH-29190)
Filipe Laíns
2021-10-28
2
-1/+5
*
bpo-45624: make test_graphlib not depend on the iteration order of sets (GH-2...
Carl Friedrich Bolz-Tereick
2021-10-28
1
-4/+13
*
bpo-45655: Add "relevant PEPs" section to ``typing`` documentation (GH-29280)
Alex Waygood
2021-10-28
2
-7/+43
*
bpo-45612: Add sqlite3 module docstring (GH-29224)
Erlend Egeberg Aasland
2021-10-28
1
-0/+34
*
bpo-45583: Correct datamodel documentation of int() (GH-29182)
Arthur Milchior
2021-10-28
1
-2/+2
*
Fixed typos (GH-29211)
MalikIdreesHasanKhan
2021-10-28
1
-4/+4
*
bpo-45604: add `level` argument to `multiprocessing.log_to_stderr` func (GH-2...
Nikita Sobolev
2021-10-28
2
-1/+3
*
bpo-45608: Document missing `sqlite3` DB-API attributes and methods (GH-29219)
Erlend Egeberg Aasland
2021-10-28
1
-0/+46
*
bpo-44828: Avoid tkinter file dialog failure on macOS 12 Monterey (GH-29276)
Ned Deily
2021-10-28
3
-1/+206
*
bpo-45562: Ensure all tokenizer debug messages are printed to stderr (GH-29270)
Pablo Galindo Salgado
2021-10-28
1
-1/+1
*
Store actual ints, not pointers to them in the interpreter state. (GH-29274)
Mark Shannon
2021-10-28
5
-21/+10
*
bpo-45629: Add a test for the "freeze" tool. (gh-29222)
Eric Snow
2021-10-28
4
-0/+235
*
bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)
Mark Shannon
2021-10-28
4
-69/+120
*
bpo-44525: Add recursive checks for `CALL_FUNCTION_BUILTIN_O` (GH-29271)
Ken Jin
2021-10-28
1
-0/+6
*
bpo-45637: Store the frame pointer in the cframe (GH-29267)
Mark Shannon
2021-10-28
10
-41/+42
*
Fix typo in Counter documentation (GH-29223)
Justinas Petuchovas
2021-10-28
1
-1/+1
*
bpo-30570: Fix segfault on buildbots caused by stack overflow from recursion ...
Dennis Sweeney
2021-10-28
2
-12/+18
*
bpo-45548: Fix out-of-tree and Debian builds (GH-29263)
Christian Heimes
2021-10-28
4
-57/+87
*
bpo-44904: Fix classmethod property bug in doctest module (GH-28838)
Alex Waygood
2021-10-28
4
-4/+21
*
bpo-45438: format of inspect.Signature with generic builtins (#29212)
Martin Rueckl
2021-10-27
3
-0/+14
*
bpo-45562: Print tokenizer debug messages to stderr (GH-29250)
Pablo Galindo Salgado
2021-10-27
1
-4/+4
*
bpo-28737: Document when tp_dealloc should call PyObject_GC_UnTrack() (GH-29246)
Sam Gross
2021-10-27
3
-9/+33
*
Don't make a call at the C level when calling bound-methods from Python code....
Mark Shannon
2021-10-27
1
-1/+14
*
bpo-45618: Fix documentation build by pinning Docutils version to 0.17.1 (GH-...
m-aciek
2021-10-27
1
-0/+4
*
bpo-42064: Convert `sqlite3` global state to module state (GH-29073)
Erlend Egeberg Aasland
2021-10-27
8
-55/+36
*
bpo-44511: Improve the bytecode for class and mapping patterns (GH-26922)
Brandt Bucher
2021-10-27
10
-116/+130
*
Remove unused variables. (GH-29231)
Benjamin Peterson
2021-10-26
1
-5/+1
*
bpo-40915: Fix mmap resize bugs on Windows (GH-29213)
Tim Golden
2021-10-26
3
-35/+178
*
bpo-45548: makesetup improvements (GH-29225)
Christian Heimes
2021-10-26
2
-4/+14
*
bpo-45020: Add tests for the -X "frozen_modules" option. (gh-28997)
Eric Snow
2021-10-25
3
-0/+78
*
bpo-45548: FreeBSD doesn't like auto vars in makesetup (GH-29216)
Christian Heimes
2021-10-25
1
-2/+2
*
bpo-45548: Add missing extensions to Modules/Setup (GH-29199)
Christian Heimes
2021-10-25
1
-33/+33
*
bpo-45595: Make extensions depend on header files (GH-29198)
Christian Heimes
2021-10-25
4
-3/+34
*
bpo-45548: Remove checks for finite and gamma (GH-29206)
Christian Heimes
2021-10-25
3
-14/+2
*
bpo-45548: Remove _math.c workarounds for pre-C99 libm (GH-29179)
Christian Heimes
2021-10-25
12
-346/+51
*
bpo-45530: speed listobject.c's unsafe_tuple_compare() (GH-29076)
Tim Peters
2021-10-25
4
-13/+81
[prev]
[next]