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
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630)
Serhiy Storchaka
2019-09-01
5
-22/+28
*
bpo-36543: Remove old-deprecated ElementTree features. (GH-12707)
Serhiy Storchaka
2019-09-01
2
-114/+1
*
bpo-37990: fix gc stats (GH-15626)
Inada Naoki
2019-08-31
1
-2/+3
*
Fix typos mostly in comments, docs and test names (GH-15209)
Min ho Kim
2019-08-30
8
-11/+11
*
bpo-37140: Fix StructUnionType_paramfunc() (GH-15612)
Victor Stinner
2019-08-30
1
-14/+59
*
bpo-37976: Prevent shadowing of TypeError in zip() (GH-15592)
Sergey Fedoseev
2019-08-30
1
-4/+0
*
bpo-37933: Fix faulthandler.cancel_dump_traceback_later() (GH-15440)
Thomas A Caswell
2019-08-29
1
-0/+5
*
bpo-37034: Display argument name on errors with keyword arguments with Argume...
RĂ©mi Lapeyre
2019-08-29
39
-332/+332
*
bpo-36833: Add tests for Datetime C API Macros (GH-14842)
Joannah Nanjekye
2019-08-29
1
-0/+53
*
bpo-37372: Fix error unpickling datetime.time objects from Python 2 with seco...
Justin Blanchard
2019-08-29
1
-1/+1
*
bpo-37960: Silence only necessary errors in repr() of buffered and text strea...
Serhiy Storchaka
2019-08-29
2
-18/+16
*
Raise a RuntimeError when tee iterator is consumed from different threads (GH...
HongWeipeng
2019-08-29
1
-0/+8
*
closes bpo-37964: add F_GETPATH command to fcntl (GH-15550)
Vinay Sharma
2019-08-29
1
-0/+3
*
bpo-37951: Lift subprocess's fork() restriction (GH-15544)
Christian Heimes
2019-08-27
1
-2/+4
*
bpo-36205: Fix the rusage implementation of time.process_time() (GH-15538)
vrajivk
2019-08-27
1
-1/+1
*
bpo-37798: Minor code formatting and comment clean-ups. (GH-15526)
Raymond Hettinger
2019-08-26
1
-13/+22
*
bpo-37055: fix warnings in _blake2 module (GH-14646)
Inada Naoki
2019-08-26
3
-19/+0
*
bpo-37942: Improve argument clinic float converter (GH-15470)
Raymond Hettinger
2019-08-25
5
-92/+266
*
bpo-37798: Add C fastpath for statistics.NormalDist.inv_cdf() (GH-15266)
Dong-hee Na
2019-08-23
3
-0/+173
*
bpo-37915: Fix comparison between tzinfo objects and timezone objects (GH-15390)
Pablo Galindo
2019-08-22
1
-1/+2
*
bpo-37834: Normalise handling of reparse points on Windows (GH-15231)
Steve Dower
2019-08-21
3
-199/+214
*
Revert mode change that loses information in directory listings on Linux. (#1...
Stefan Krah
2019-08-21
1
-0/+0
*
bpo-37851: faulthandler allocates its stack on demand (GH-15358)
Victor Stinner
2019-08-21
1
-48/+98
*
Unmark files as executable that can't actually be executed. (GH-15353)
Greg Price
2019-08-21
4
-0/+0
*
Remove a dead comment from ossaudiodev.c (#15346)
Brett Cannon
2019-08-20
1
-2/+0
*
bpo-15913: Implement PyBuffer_SizeFromFormat() (GH-13873)
Joannah Nanjekye
2019-08-20
1
-0/+21
*
Replace usage of the obscure PEM_read_bio_X509_AUX with the more standard PEM...
Alex Gaynor
2019-08-15
1
-1/+1
*
bpo-21131: Fix faulthandler.register(chain=True) stack (GH-15276)
Victor Stinner
2019-08-14
1
-1/+5
*
bpo-37811: FreeBSD, OSX: fix poll(2) usage in sockets module (GH-15202)
Artem Khramov
2019-08-14
1
-0/+11
*
bpo-37738: Fix curses addch(str, color_pair) (GH-15071)
Victor Stinner
2019-08-14
1
-3/+15
*
Delete leftover clinic-generated file for C zipimport. (GH-15174)
Greg Price
2019-08-10
1
-325/+0
*
bpo-37642: Update acceptable offsets in timezone (GH-14878)
Ngalim Siregar
2019-08-09
1
-2/+9
*
bpo-37587: optimize json.loads (GH-15134)
Inada Naoki
2019-08-08
1
-20/+19
*
bpo-34488: optimize BytesIO.writelines() (GH-8904)
Sergey Fedoseev
2019-08-07
1
-36/+59
*
bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)
Serhiy Storchaka
2019-08-04
2
-5/+4
*
bpo-37685: Fixed comparisons of datetime.timedelta and datetime.timezone. (GH...
Serhiy Storchaka
2019-08-04
1
-5/+2
*
bpo-36590: Add Bluetooth RFCOMM and support for Windows. (GH-12767)
Greg Bowser
2019-08-02
2
-6/+102
*
bpo-37729: gc: write stats at once (GH-15050)
Inada Naoki
2019-08-02
1
-20/+25
*
bpo-37695: Correct unget_wch error message. (GH-14986)
Anthony Sottile
2019-07-31
1
-2/+2
*
bpo-37085: Expose SocketCAN bcm_msg_head flags (#13646)
karl ding
2019-07-31
1
-0/+19
*
Fix typos in comments, docs and test names (#15018)
Min ho Kim
2019-07-30
7
-10/+10
*
bpo-37587: Make json.loads faster for long strings (GH-14752)
Marco Paolini
2019-07-30
1
-1/+1
*
bpo-37268: Add deprecation notice and a DeprecationWarning for the parser mod...
Pablo Galindo
2019-07-30
1
-0/+6
*
bpo-37691: Let math.dist() accept sequences and iterables for coordinates (GH...
Raymond Hettinger
2019-07-27
2
-17/+39
*
bpo-37502: handle default parameter for buffers argument of pickle.loads corr...
Markus Mohrhard
2019-07-25
1
-1/+1
*
bpo-37399: Correctly attach tail text to the last element/comment/pi (GH-14856)
Stefan Behnel
2019-07-24
1
-24/+64
*
Fix typos in docs, comments and test assert messages (#14872)
Min ho Kim
2019-07-21
2
-2/+2
*
bpo-37476: Adding tests for asutf8 and asutf8andsize (GH-14531)
Hai Shi
2019-07-20
1
-0/+44
*
bpo-37547: Fix a compiler warning in winconsoleio.c (GH-14785)
Zackery Spytz
2019-07-19
1
-1/+1
*
bpo-34749: Improved performance of binascii.a2b_base64(). (GH-9444)
Sergey Fedoseev
2019-07-14
1
-86/+56
[next]