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
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
merge 3.2 (#14717)
Benjamin Peterson
2012-05-03
1
-1/+1
|
\
\
|
|
/
|
*
close() doesn't take any args (closes #14717)
Benjamin Peterson
2012-05-03
1
-1/+1
*
|
if the kind of the string to count is larger than the string to search, short...
Benjamin Peterson
2012-05-03
1
-10/+3
*
|
unicode_writer: add finish() method and assertions to write_str() method
Victor Stinner
2012-05-03
1
-13/+33
*
|
Issue #14687: Remove redundant length attribute of unicode_write_t
Victor Stinner
2012-05-03
1
-12/+8
*
|
Issue #14687: Cleanup unicode_writer_prepare()
Victor Stinner
2012-05-03
1
-23/+19
*
|
Issue #14687: str%tuple now uses an optimistic "unicode writer" instead of an
Victor Stinner
2012-05-03
1
-100/+166
*
|
Issue #14624, #14687: Optimize unicode_widen()
Victor Stinner
2012-05-03
1
-7/+9
*
|
Remove buggy assertion in PyUnicode_Substring()
Victor Stinner
2012-05-03
1
-2/+2
*
|
Fix PyUnicode_Substring() for start >= length and start > end
Victor Stinner
2012-05-03
1
-6/+8
*
|
Unicode: optimize creating of 1-character strings
Victor Stinner
2012-05-03
1
-8/+50
*
|
Issue #14687: Optimize str%tuple for the "%(name)s" syntax
Victor Stinner
2012-05-02
1
-2/+3
*
|
unicodeobject.c: Add MAX_MAXCHAR() macro to (micro-)optimize the computation
Victor Stinner
2012-05-01
1
-48/+49
*
|
Issue #14687: Cleanup PyUnicode_Format()
Victor Stinner
2012-05-01
1
-2/+4
*
|
Issue #14687: Optimize str%args
Victor Stinner
2012-05-01
1
-2/+2
*
|
merge 3.2 (#14699)
Benjamin Peterson
2012-05-01
1
-3/+41
|
\
\
|
|
/
|
*
fix calling the classmethod descriptor directly (closes #14699)
Benjamin Peterson
2012-05-01
1
-3/+41
*
|
change insertdict to not steal references (#13903)
Benjamin Peterson
2012-04-30
1
-13/+3
*
|
Issue #14687: Avoid an useless duplicated string in PyUnicode_Format()
Victor Stinner
2012-04-30
1
-11/+7
*
|
Issue #14687: Cleanup PyUnicode_Format()
Victor Stinner
2012-04-30
1
-54/+28
*
|
Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py.
Brett Cannon
2012-04-29
1
-1/+1
*
|
Fix my previous commit: bool is a long, restore the specical case for bool
Victor Stinner
2012-04-27
1
-1/+4
*
|
Simplify and optimize formatlong()
Victor Stinner
2012-04-27
2
-150/+128
*
|
Optimize _PyUnicode_FindMaxChar() find pure ASCII strings
Victor Stinner
2012-04-27
1
-0/+3
*
|
decref cached keys on type deallocation (#13903)
Benjamin Peterson
2012-04-27
1
-3/+5
*
|
Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)
Victor Stinner
2012-04-27
2
-10/+18
*
|
_PyUnicode_CheckConsistency() ensures that the unicode string ends with a
Victor Stinner
2012-04-25
1
-2/+6
*
|
long_to_decimal_string() and _PyLong_Format() check the consistency of newly
Victor Stinner
2012-04-25
1
-0/+2
*
|
distiguish between refusing to creating shared keys and error (#13903)
Benjamin Peterson
2012-04-24
1
-4/+7
*
|
Account for shared keys in type's __sizeof__ (#13903).
Martin v. Loewis
2012-04-24
2
-11/+30
*
|
merge 3.2 (#14658)
Benjamin Peterson
2012-04-24
1
-2/+3
|
\
\
|
|
/
|
*
don't use a slot wrapper from a different special method (closes #14658)
Benjamin Peterson
2012-04-24
1
-2/+3
*
|
fix dict gc tracking (#13903)
Benjamin Peterson
2012-04-24
1
-0/+3
*
|
make pointer arith c89
Benjamin Peterson
2012-04-24
1
-2/+2
*
|
use correct base ptr
Benjamin Peterson
2012-04-23
1
-1/+2
*
|
simplify and reformat
Benjamin Peterson
2012-04-23
1
-9/+11
*
|
Close #14648: Compute correctly maxchar in str.format() for substrin
Victor Stinner
2012-04-23
1
-0/+31
*
|
fix instance dicts with str subclasses (#13903)
Benjamin Peterson
2012-04-23
1
-1/+5
*
|
don't make shared keys with dict subclasses
Benjamin Peterson
2012-04-23
1
-1/+1
*
|
Implement PEP 412: Key-sharing dictionaries (closes #13903)
Benjamin Peterson
2012-04-23
4
-777/+1281
*
|
Issue #14630: Merge fix from 3.2.
Mark Dickinson
2012-04-20
1
-3/+1
|
\
\
|
|
/
|
*
Issue #14630: Fix an incorrect access of ob_digit[0] for a zero instance of a...
Mark Dickinson
2012-04-20
1
-3/+1
*
|
Issue #14339: Improve speed of bin, oct and hex builtins. Patch by Serhiy St...
Mark Dickinson
2012-04-20
1
-26/+31
*
|
Issue #14385: Support other types than dict for __builtins__
Victor Stinner
2012-04-18
1
-4/+2
*
|
merge 3.2 (#14612)
Benjamin Peterson
2012-04-18
1
-2/+4
|
\
\
|
|
/
|
*
SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno (clos...
Benjamin Peterson
2012-04-18
1
-2/+4
*
|
Issue #14386: Expose the dict_proxy internal type as types.MappingProxyType
Victor Stinner
2012-04-15
1
-60/+110
*
|
Issue #2377: Make importlib the implementation of __import__().
Brett Cannon
2012-04-14
3
-6/+41
*
|
Issue #1559549: Add 'name' and 'path' attributes to ImportError.
Brett Cannon
2012-04-13
1
-2/+97
*
|
merge 3.2 (#14509)
Benjamin Peterson
2012-04-09
2
-0/+4
|
\
\
|
|
/
[prev]
[next]