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
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix regression in error message introduced in bpo-29951. (#2028)
Serhiy Storchaka
2017-06-09
1
-2/+2
*
bpo-30529: Fix errors for invalid whitespaces in f-string subexpressions. (#1...
Serhiy Storchaka
2017-06-08
1
-24/+7
*
bpo-30592: Fixed error messages for some builtins. (#1996)
Serhiy Storchaka
2017-06-08
1
-3/+3
*
bpo-30598: _PySys_EndInit() now duplicates warnoptions (#1998)
Victor Stinner
2017-06-08
1
-4/+4
*
bpo-30547: Fix multiple reference leaks (#1995)
Stéphane Wirtel
2017-06-08
1
-1/+4
*
bpo-30534: Fixed error messages when pass keyword arguments (#1901)
Serhiy Storchaka
2017-06-06
1
-16/+32
*
bpo-30567: Fix refleak in sys.getwindowsversion (#1940)
Segev Finer
2017-06-04
1
-4/+4
*
Add reference to help('FORMATTING') in format() builtin (GH-166)
Amit Kumar
2017-05-29
2
-4/+8
*
bpo-16500: Use register_at_fork() in the threading module (#1843)
Antoine Pitrou
2017-05-28
1
-18/+0
*
Doc nits for bpo-16500 (#1841)
Antoine Pitrou
2017-05-28
4
-7/+7
*
bpo-16500: Allow registering at-fork handlers (#1715)
Antoine Pitrou
2017-05-27
1
-0/+10
*
Drop a duplicate line. (#1809)
Eric Snow
2017-05-25
1
-2/+1
*
Delete sigcheck.c since it appears unused (#1723)
Segev Finer
2017-05-25
1
-19/+0
*
bpo-29104: Fixed parsing backslashes in f-strings. (#490)
Serhiy Storchaka
2017-05-25
1
-21/+32
*
bpo-22257: Private C-API for main interpreter initialization (PEP 432). (#1729)
Eric Snow
2017-05-24
2
-15/+75
*
bpo-22257: Private C-API for core runtime initialization (PEP 432). (#1772)
Eric Snow
2017-05-24
2
-45/+185
*
Improves test_underpth_nosite_file to reveal why it fails. (#1763)
Steve Dower
2017-05-23
1
-1/+6
*
Update importlib.h (GH-1762)
Zachary Ware
2017-05-23
1
-2/+2
*
bpo-22257: Small changes for PEP 432. (#1728)
Eric Snow
2017-05-23
5
-1850/+1960
*
bpo-29102: Add a unique ID to PyInterpreterState. (#1639)
Eric Snow
2017-05-23
2
-0/+38
*
bpo-30395 _PyGILState_Reinit deadlock fix (#1734)
Jason Fried
2017-05-22
1
-0/+4
*
bpo-30039: Don't run signal handlers while resuming a yield from stack (#1081)
Nathaniel J. Smith
2017-05-17
1
-3/+14
*
bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480)
Xiang Zhang
2017-05-10
1
-1/+1
*
bpo-30024: Circular imports involving absolute imports with binding (#1264)
Serhiy Storchaka
2017-05-09
1
-2/+2
*
bpo-30279: Remove unused Python/thread_foobar.h (#1473)
Masayuki Yamamoto
2017-05-05
2
-138/+0
*
bpo-30225: Fix is_valid_fd() on macOS Tiger (#1443)
Victor Stinner
2017-05-03
1
-0/+9
*
bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096)
Serhiy Storchaka
2017-04-19
1
-1/+2
*
bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)
Serhiy Storchaka
2017-04-16
1
-1406/+1406
*
bpo-29838: Add asserts for checking results of sq_length and mq_length slots....
Serhiy Storchaka
2017-04-16
1
-1/+3
*
bpo-29951: Include function name for some error messages in `PyArg_ParseTuple...
Michael Seifert
2017-04-09
1
-22/+42
*
bpo-29935: Fixed error messages in the index() method of tuple, list and dequ...
Serhiy Storchaka
2017-03-30
1
-7/+16
*
bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716)
Serhiy Storchaka
2017-03-30
1
-0/+25
*
bpo-29878: Add global instances of int for 0 and 1. (#852)
Serhiy Storchaka
2017-03-30
2
-31/+7
*
bpo-6532: Make the thread id an unsigned integer. (#781)
Serhiy Storchaka
2017-03-23
8
-45/+47
*
bpo-29859: Fix error messages from return codes for pthread_* calls (GH-741)
Daniel Birnstiel
2017-03-21
1
-11/+13
*
bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. ...
Serhiy Storchaka
2017-03-21
1
-1/+1
*
bpo-29849: fix a memory leak in import_from (GH-712)
Xiang Zhang
2017-03-21
1
-10/+17
*
bpo-29748: Added the slice index converter in Argument Clinic. (#549)
Serhiy Storchaka
2017-03-19
1
-0/+7
*
bpo-8256: Fixed possible failing or crashing input() (#517)
Serhiy Storchaka
2017-03-12
1
-5/+16
*
bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485)
Serhiy Storchaka
2017-03-12
1
-2/+2
*
bpo-20185: Convert the marshal module to Argument Clinic. (#541)
Serhiy Storchaka
2017-03-12
2
-67/+229
*
bpo-29746: Update marshal docs to Python 3. (#547)
Serhiy Storchaka
2017-03-12
1
-14/+12
*
bpo-29770: remove outdated PYO related info (GH-590)
Xiang Zhang
2017-03-11
1
-1/+1
*
bpo-29619: Convert st_ino using unsigned integer (#557)
Victor Stinner
2017-03-09
1
-2/+2
*
Use Py_RETURN_FALSE/Py_RETURN_TRUE rather than PyBool_FromLong(0)/PyBool_From...
Serhiy Storchaka
2017-03-08
1
-1/+1
*
bpo-29676: fix lsprof can't profile C method call. (GH523)
INADA Naoki
2017-03-07
1
-1/+14
*
bpo-27593: Get SCM build info from git instead of hg. (#446)
Ned Deily
2017-03-04
1
-3/+3
*
bpo-28893: Set __cause__ for errors in async iteration protocol (#407)
Yury Selivanov
2017-03-03
1
-3/+3
*
bpo-29655: Fixed possible reference leaks in `import *`. (#301)
Matthias Bussonnier
2017-02-26
1
-1/+4
*
bpo-29622: Make AST constructor to accept less than enough number of position...
INADA Naoki
2017-02-23
1
-19/+17
[next]