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
*
Issue #19514: Add Andrei Dorian Duma to Misc/ACKS for changeset 4a09cc62419b
Victor Stinner
2013-11-07
1
-0/+1
*
Fix _Py_normalize_encoding(): ensure that buffer is big enough to store "utf-8"
Victor Stinner
2013-11-07
1
-0/+2
*
Issue #19514: Deduplicate some _Py_IDENTIFIER declarations.
Martin v. Löwis
2013-11-07
5
-28/+18
*
Remove redundant test_selectors.py from test_asyncio.
Guido van Rossum
2013-11-07
2
-150/+0
*
#17080: improve error message of float/complex when the wrong type is passed.
Ezio Melotti
2013-11-07
4
-6/+11
*
Optimize BaseSelector.modify(). Patch by Arnaud Faure.
Guido van Rossum
2013-11-07
2
-3/+16
*
#19480: merge with 3.3.
Ezio Melotti
2013-11-07
3
-13/+28
|
\
|
*
#19480: HTMLParser now accepts all valid start-tag names as defined by the HT...
Ezio Melotti
2013-11-07
3
-13/+28
*
|
Merge #18985: Improve fcntl documentation.
R David Murray
2013-11-07
2
-16/+21
|
\
\
|
|
/
|
*
#18985: Improve fcntl documentation.
R David Murray
2013-11-07
2
-16/+21
*
|
print_error_text() doesn't encode the filename anymore
Victor Stinner
2013-11-07
1
-27/+35
*
|
asyncio: Add close() back to Unix selector event loop, to remove all signal h...
Guido van Rossum
2013-11-07
2
-0/+21
*
|
remove an outdated comment
Victor Stinner
2013-11-06
1
-1/+0
*
|
Issue #19512: Use the new _PyId_builtins identifier
Victor Stinner
2013-11-06
3
-4/+8
*
|
Issue #19512: add _PyUnicode_CompareWithId() function
Victor Stinner
2013-11-06
6
-15/+32
*
|
print_exception(): don't encode the module name to UTF-8
Victor Stinner
2013-11-06
1
-3/+2
*
|
Issue #19512: builtin print() function uses an identifier instead of literal
Victor Stinner
2013-11-06
1
-1/+2
*
|
Issue #19512: _count_elements() of _collections reuses PyId_get identifier
Victor Stinner
2013-11-06
1
-1/+1
*
|
Issue #19512: fileio_init() reuses PyId_name identifier instead of "name"
Victor Stinner
2013-11-06
1
-2/+3
*
|
Issue #19512: __build_class() builtin now uses an identifier for the "metacla...
Victor Stinner
2013-11-06
1
-2/+3
*
|
Issue #19512: add some common identifiers to only create common strings once,
Victor Stinner
2013-11-06
13
-49/+72
*
|
Issue #19512: pickle now uses an identifier to only create the Unicode string
Victor Stinner
2013-11-06
1
-2/+4
*
|
Issue #19512: PRINT_EXPR bytecode now uses an identifier to get sys.displayhook
Victor Stinner
2013-11-06
1
-1/+2
*
|
Issue #19512: Add _PySys_GetObjectId() and _PySys_SetObjectId() functions
Victor Stinner
2013-11-06
2
-0/+28
*
|
Issue #19512: eval() and exec() now use an identifier for "__builtins__" string
Victor Stinner
2013-11-06
1
-6/+7
*
|
Issue #19512: type_abstractmethods() and type_set_abstractmethods() now use an
Victor Stinner
2013-11-06
1
-5/+10
*
|
Issue #19512: Add a new _PyDict_DelItemId() function, similar to
Victor Stinner
2013-11-06
2
-0/+10
*
|
Issue #19512: Py_ReprEnter() and Py_ReprLeave() now use an identifier for the
Victor Stinner
2013-11-06
1
-4/+4
*
|
Issue #19512: Add PyRun_InteractiveOneObject() function
Victor Stinner
2013-11-06
2
-29/+86
*
|
Issue #19512: _print_total_refs() now uses an identifier to get "showrefcount"
Victor Stinner
2013-11-06
1
-6/+4
*
|
Issue #19512: sys_displayhook() now uses an identifier for "builtins"
Victor Stinner
2013-11-06
1
-2/+10
*
|
Issue #18582: fix memory leak in pbkdf2 code
Christian Heimes
2013-11-06
1
-0/+1
*
|
Remove incorrect comment from dis tests
Nick Coghlan
2013-11-06
1
-1/+0
*
|
Fix typo in updated dis docs
Nick Coghlan
2013-11-06
1
-1/+1
*
|
Close #19378: address flaws in the new dis module APIs
Nick Coghlan
2013-11-06
5
-123/+168
*
|
#19439: Update PCbuild/readme.txt with new sub-project
Zachary Ware
2013-11-06
1
-0/+3
*
|
doc: fix typo
Victor Stinner
2013-11-06
1
-1/+1
*
|
Revert wrong change in previous commit (issue #19085).
Serhiy Storchaka
2013-11-05
1
-1/+1
|
\
\
|
|
/
|
*
Revert wrong change in previous commit (issue #19085).
Serhiy Storchaka
2013-11-05
1
-1/+1
*
|
Fix test_insertwidth Tkinter tests on Tk 8.5 with patchlevel >= 8.5.12 (issue...
Serhiy Storchaka
2013-11-05
1
-4/+4
|
\
\
|
|
/
|
*
Fix test_insertwidth Tkinter tests on Tk 8.5 with patchlevel >= 8.5.12 (issue...
Serhiy Storchaka
2013-11-05
1
-4/+4
*
|
Fix typo in tkinter tests (issue #19085).
Serhiy Storchaka
2013-11-05
1
-1/+1
|
\
\
|
|
/
|
*
Fix typo in tkinter tests (issue #19085).
Serhiy Storchaka
2013-11-05
1
-1/+1
*
|
Issue #19437: Fix compiler_class(), handle compiler_lookup_arg() failure
Victor Stinner
2013-11-05
1
-0/+4
*
|
Issue #19437: Fix _threading.RLock constructor (rlock_new), call
Victor Stinner
2013-11-05
1
-10/+14
*
|
Issue #19437: Fix pysqlite_cursor_iternext() of sqlite3, when the row factory
Victor Stinner
2013-11-05
1
-0/+5
*
|
Issue #19437: Fix pysqlite_connection_call() of sqlite3, return NULL when
Victor Stinner
2013-11-05
1
-17/+13
*
|
Issue #19437: Fix pysqlite_cursor_iternext() of sqlite3, handle
Victor Stinner
2013-11-05
1
-0/+6
*
|
Issue #10197 Tweak docs for subprocess.getstatusoutput and align the document...
Tim Golden
2013-11-05
2
-14/+18
*
|
Issue #15663: merge build-installer.py changes
Ned Deily
2013-11-05
1
-5/+5
|
\
\
|
|
/
[next]