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-46113: Minor fixes in stdtypes documentation (GH-30167)
Vivek Vashist
2021-12-18
1
-8/+8
*
bpo-46099: Fix pthread_getcpuclockid test on Solaris (GH-30140)
Jakub Kulík
2021-12-18
1
-5/+6
*
bpo-46088: Automatically detect or install bootstrap Python runtime when buil...
Steve Dower
2021-12-18
5
-16/+49
*
bpo-40915: Avoid compiler warnings by fixing mmapmodule conversion from LARGE...
neonene
2021-12-18
1
-1/+2
*
bpo-46104: Reduce use of pre-PEP 526 syntax in typing docs (GH-30148)
Alex Waygood
2021-12-18
1
-9/+8
*
bpo-44035: Show git diff after autoreconf and regen (GH-30117)
Christian Heimes
2021-12-17
1
-1/+3
*
bpo-46114: Fix OpenSSL version check for 3.0.1 (GH-30170)
Christian Heimes
2021-12-17
4
-3/+8
*
bpo-46072: Add top level stats struct (GH-30169)
Mark Shannon
2021-12-17
6
-103/+154
*
bpo-45711: Remove type and traceback from exc_info (GH-30122)
Irit Katriel
2021-12-17
14
-392/+231
*
Doc: some rst linting. (GH-30149)
Julien Palard
2021-12-17
3
-4/+4
*
bpo-46111: Fix unittest tests in optimized mode (GH-30163)
Serhiy Storchaka
2021-12-17
3
-3/+6
*
Fix a typo in the message from make_ssl_certs. (GH-30152)
Yilei "Dolee" Yang
2021-12-17
1
-1/+1
*
bpo-45635: Do not suppress errors in functions called from _PyErr_Display (GH...
Irit Katriel
2021-12-16
2
-113/+158
*
bpo-44893: Implement EntryPoint as simple class with attributes. (GH-30150)
Jason R. Coombs
2021-12-16
11
-108/+269
*
bpo-46105: Honor spec when generating requirement specs with urls and extras....
Jason R. Coombs
2021-12-16
3
-2/+15
*
bpo-46044: Annotate deprecated sdists formats (GH-30043)
Matthias Bussonnier
2021-12-16
1
-19/+22
*
Better randomization of stats filenames. (GH-30145)
Mark Shannon
2021-12-16
1
-2/+14
*
bpo-22047: [argparse] deprecate nested argument groups and mutually exclusive...
Irit Katriel
2021-12-16
4
-2/+45
*
bpo-45755: [typing] Reveal class attributes of generic in generic aliases in ...
Ken Jin
2021-12-16
3
-0/+17
*
bpo-46072: Document --enable-stats option. (GH-30139)
Mark Shannon
2021-12-16
2
-0/+11
*
bpo-45829: Check `__getitem__`'s version for overflow before specializing (GH...
Brandt Bucher
2021-12-16
1
-1/+1
*
Fix the output of built-in iter() function example in Iterators (Section 9.8)...
Vivek Vashist
2021-12-16
1
-1/+1
*
bpo-28816: [doc] clarify that zipimport invokes importers only for python fil...
Irit Katriel
2021-12-16
1
-2/+2
*
Remove spaces in empty lines (GH-30121)
AN Long
2021-12-15
3
-5/+5
*
bpo-46072: Add --with-pystats configure option to simplify gathering of VM st...
Mark Shannon
2021-12-15
9
-45/+74
*
bpo-44525: Specialize for calls to type and other builtin classes with 1 argu...
Mark Shannon
2021-12-15
6
-40/+105
*
Add Positional only arguments forward slash (/) to sorted() function in Built...
Vivek Vashist
2021-12-15
1
-1/+1
*
bpo-46039: Split yield from in two (GH-30035)
Mark Shannon
2021-12-15
10
-53/+91
*
bpo-26952: [argparse] clearer error when formatting an empty mutually… (GH-...
Irit Katriel
2021-12-15
3
-0/+11
*
Document new call opcodes for 3.11 (GH-30107)
Mark Shannon
2021-12-14
1
-3/+5
*
bpo-44525: Split calls into PRECALL and CALL (GH-30011)
Mark Shannon
2021-12-14
15
-236/+395
*
bpo-45292: [PEP-654] add except* (GH-29581)
Irit Katriel
2021-12-14
34
-1853/+5591
*
bpo-46063: Add 'delay=True' to file handler initialization. (GH-30103)
Vinay Sajip
2021-12-14
1
-1/+2
*
bpo-46059: Clarify pattern-matching example in "control flow" docs (GH-30079)
Alex Waygood
2021-12-14
1
-3/+5
*
bpo-46023: Skip build if module is marked as DISABLED (GH-30100)
Christian Heimes
2021-12-14
2
-1/+5
*
bpo-23469: Delete Wing IDE configuration files (GH-30067)
Kumar Aditya
2021-12-14
4
-50/+0
*
bpo-45919: Remove out of date comment (GH-30090)
Dong-hee Na
2021-12-14
1
-2/+4
*
bpo-45953: Statically initialize the small ints. (gh-30092)
Eric Snow
2021-12-14
9
-81/+360
*
bpo-46063: Improve algorithm for computing which rolled-over log file… (GH-...
Vinay Sajip
2021-12-14
3
-5/+83
*
bpo-45949: Pure Python freeze module for cross builds (GH-29899)
Christian Heimes
2021-12-13
9
-115/+205
*
bpo-45643: Add signal.SIGSTKFLT on platforms where this is defined (GH-29266)
Gareth Rees
2021-12-13
3
-0/+14
*
bpo-45919: Use WinAPI GetFileType() in is_valid_fd() (GH-30082)
Dong-hee Na
2021-12-13
1
-12/+10
*
Clarify new_event_loop return value. (GH-30078)
Paul Bryan
2021-12-13
1
-1/+1
*
bpo-16594: Add allow_reuse_port on socketserver (GH-30072)
AN Long
2021-12-13
2
-0/+9
*
bpo-37602: Clarify that the lib2to3 nonzero fixer changes only definitions (G...
Irit Katriel
2021-12-13
1
-1/+2
*
bpo-27718: Fix help for the signal module (GH-30063)
Serhiy Storchaka
2021-12-13
3
-3/+21
*
Remove erroneous padding in dataclasses (GH-30076)
Andre Delfino
2021-12-12
1
-63/+63
*
bpo-46054: Correct non-utf8 character tests in test_exceptions (GH-30074)
Pablo Galindo Salgado
2021-12-12
1
-2/+2
*
bpo-45855: document that `no_block` has no use anymore in PyCapsule_Import (#...
Georg Brandl
2021-12-12
3
-10/+9
*
Re-add `reuse_address` parameter to `create_server` (GH-29733)
Jim Crist-Harif
2021-12-12
1
-0/+6
[next]