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-32357: Optimize asyncio.iscoroutine() for non-native coroutines (#4915)
Yury Selivanov
2017-12-19
4
-33/+149
*
bpo-27456: Simplify sock type checks (#4922)
Yury Selivanov
2017-12-19
3
-29/+9
*
bpo-32030: Fix compiler warnings (#4921)
Victor Stinner
2017-12-19
4
-40/+17
*
Improve test coverage (#4924)
Andrew Svetlov
2017-12-19
1
-0/+1
*
bpo-32331: Fix socket.type when SOCK_NONBLOCK is available (#4877)
Yury Selivanov
2017-12-19
7
-24/+87
*
bpo-32030: Fix compilation on FreeBSD, #include <fenv.h> (#4919)
Victor Stinner
2017-12-18
2
-18/+14
*
bpo-32356: idempotent pause_/resume_reading; new is_reading method. (#4914)
Yury Selivanov
2017-12-18
9
-24/+87
*
bpo-32369: test_subprocess: Fix pass_fds check in test_close_fds() (#4920)
izbyshev
2017-12-18
1
-2/+2
*
Add @asvetlov to asyncio codeowners (#4917)
Andrew Svetlov
2017-12-18
1
-1/+1
*
bpo-32365: Fix a reference leak when compile __debug__. (#4916)
Serhiy Storchaka
2017-12-18
1
-4/+4
*
bpo-19764: Implemented support for subprocess.Popen(close_fds=True) on Window...
Segev Finer
2017-12-18
8
-54/+425
*
bpo-29469: peephole: Remove const_stack (GH-4879)
INADA Naoki
2017-12-18
1
-81/+21
*
bpo-30050: Allow disabling full buffer warnings in signal.set_wakeup_fd (#4792)
Nathaniel J. Smith
2017-12-18
4
-57/+170
*
bpo-32348: Optimize asyncio.Future schedule/add/remove callback. (#4907)
Yury Selivanov
2017-12-18
4
-102/+499
*
add 'extern' to pygetopt.h symbols, so then don't end up in comdat (#4909)
Benjamin Peterson
2017-12-17
1
-6/+6
*
bpo-32351: Use fastpath in asyncio.sleep if delay<0 (#4908)
Andrew Svetlov
2017-12-17
2
-1/+2
*
bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799)
Andrew Svetlov
2017-12-16
6
-148/+696
*
Fix PyObject_Hash signature in comment (#4905)
Andrew Svetlov
2017-12-16
1
-1/+1
*
Add tests for using PEP560 with classes implemented in C. (#4883)
Serhiy Storchaka
2017-12-16
2
-0/+103
*
bpo-32002: Refactor C locale coercion tests (GH-4369)
Nick Coghlan
2017-12-16
2
-54/+84
*
fix up signedness in PyImport_ExtendInittab (#4831)
Benjamin Peterson
2017-12-16
1
-5/+3
*
bpo-29240, bpo-32030: Py_Main() re-reads config if encoding changes (#4899)
Victor Stinner
2017-12-16
12
-214/+324
*
bpo-27456: Ensure TCP_NODELAY is set on linux (#4231)
Yury Selivanov
2017-12-16
6
-31/+53
*
bpo-32248: Implement importlib.abc.ResourceReader (GH-4892)
Brett Cannon
2017-12-16
4
-0/+145
*
bpo-29240: Don't define decode_locale() on macOS (#4895)
Victor Stinner
2017-12-15
1
-0/+4
*
Minor wording tweak for itertools documentation (#4893)
Raymond Hettinger
2017-12-15
1
-2/+2
*
F-strings docs: link to Format Specifiers (GH-4888)
Mariatta
2017-12-15
1
-1/+2
*
bpo-32294: Fix multiprocessing test_semaphore_tracker() (#4885)
Victor Stinner
2017-12-15
1
-1/+1
*
bpo-32329: Add versionchanged to -R option doc (#4884)
Victor Stinner
2017-12-15
1
-0/+3
*
bpo-32265: Classify class and static methods of builtin types. (#4776)
Serhiy Storchaka
2017-12-15
6
-3/+32
*
bpo-30416: Protect the optimizer during constant folding. (#4860)
Serhiy Storchaka
2017-12-15
4
-27/+144
*
bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...
Serhiy Storchaka
2017-12-15
88
-662/+669
*
bpo-27169: The __debug__ constant is now optimized out at compile time. (#4880)
Serhiy Storchaka
2017-12-15
4
-38/+26
*
bpo-28393: Update encoding lookup docs wrt bpo-27938 (#4871)
Ville Skyttä
2017-12-15
1
-4/+8
*
move pygetopt.h to internal (closes bpo-32264) (#4830)
Benjamin Peterson
2017-12-15
8
-34/+25
*
bpo-32311: Implement asyncio.create_task() shortcut (#4848)
Andrew Svetlov
2017-12-15
12
-95/+201
*
bpo-32327: Convert asyncio functions documented as coroutines to coroutines. ...
Yury Selivanov
2017-12-15
11
-195/+170
*
bpo-32030: Add _PyMainInterpreterConfig.executable (#4876)
Victor Stinner
2017-12-15
5
-69/+92
*
bpo-32030: Add _PyCoreConfig_Copy() (#4874)
Victor Stinner
2017-12-15
4
-84/+197
*
bpo-32329: Fix -R option for hash randomization (#4873)
Victor Stinner
2017-12-14
6
-39/+63
*
bpo-32143: add f_fsid to os.statvfs() (#4571)
Giuseppe Scrivano
2017-12-14
4
-1/+12
*
bpo-32226: Implementation of PEP 560 (core components) (#4732)
Ivan Levkivskyi
2017-12-14
7
-5/+492
*
bpo-29469: Optimize literal lists and sets iterating on the AST level. (#4866)
Serhiy Storchaka
2017-12-14
4
-3775/+3761
*
bpo-32277: Fix exception raised from chmod(..., follow_symlinks=False) (#4797)
Anthony Sottile
2017-12-14
2
-0/+4
*
bpo-32314: Implement asyncio.run() (#4852)
Yury Selivanov
2017-12-14
5
-9/+173
*
bpo-29469: Remove unnecessary peephole optimizer (GH-4863)
INADA Naoki
2017-12-14
1
-15/+0
*
bpo-32030: Add _PyMainInterpreterConfig.warnoptions (#4855)
Victor Stinner
2017-12-14
3
-47/+104
*
bpo-32297: Few misspellings found in Python source code comments. (#4803)
Mike
2017-12-14
39
-71/+71
*
bpo-32225: Implementation of PEP 562 (#4731)
Ivan Levkivskyi
2017-12-14
9
-4/+161
*
bpo-32302: Fix distutils bdist_wininst for CRT v142 (#4851)
Victor Stinner
2017-12-14
2
-2/+4
[next]