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
*
Fix formatting memory consumption with very large padding specifications
Antoine Pitrou
2011-10-07
1
-8/+28
*
str.replace(a, a) is now returning str unchanged if a is a
Victor Stinner
2011-10-07
1
-0/+2
*
Fix massive slowdown in string formatting with str.format.
Antoine Pitrou
2011-10-07
1
-128/+24
*
Fix massive slowdown in string formatting with the % operator
Antoine Pitrou
2011-10-06
1
-114/+127
*
Ensure that 1-char singletons get used
Antoine Pitrou
2011-10-06
1
-0/+8
*
Issue #12911: Fix memory consumption when calculating the repr() of huge tupl...
Antoine Pitrou
2011-10-06
3
-85/+185
|
\
|
*
Issue #12911: Fix memory consumption when calculating the repr() of huge tupl...
Antoine Pitrou
2011-10-06
3
-85/+185
*
|
Fix PyUnicode_Join() for len==1 and non-exact string
Victor Stinner
2011-10-06
1
-2/+2
*
|
Fix compilation warnings under 64-bit Windows
Antoine Pitrou
2011-10-06
1
-1/+1
*
|
Fix compilation under Windows
Antoine Pitrou
2011-10-06
1
-1/+2
*
|
Fix assertion in unicode_adjust_maxchar()
Victor Stinner
2011-10-06
1
-1/+1
*
|
Fix my last change on PyUnicode_Join(): don't process separator if len==1
Victor Stinner
2011-10-06
1
-28/+32
*
|
str.replace() avoids memory when it's possible
Victor Stinner
2011-10-06
1
-18/+84
*
|
_copy_characters() fails more quickly in debug mode on inconsistent state
Victor Stinner
2011-10-06
1
-6/+18
*
|
Fix a compiler warning: don't define unicode_is_singleton() in release mode
Victor Stinner
2011-10-06
1
-0/+2
*
|
Don't check for the maximum character when copying from unicodeobject.c
Victor Stinner
2011-10-05
1
-184/+184
*
|
Fix post-condition in unicode_repr(): check the result, not the input
Victor Stinner
2011-10-05
1
-1/+1
*
|
replace() uses unicode_fromascii() if the input and replace string is ASCII
Victor Stinner
2011-10-05
1
-1/+4
*
|
unicode_fromascii() checks that the input is ASCII in debug mode
Victor Stinner
2011-10-05
1
-3/+11
*
|
Add asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCII
Victor Stinner
2011-10-05
2
-47/+150
*
|
Fix PyUnicode_Partition(): str_in->str_obj
Victor Stinner
2011-10-05
1
-5/+5
*
|
Fix my_basename(): make the string ready
Victor Stinner
2011-10-05
1
-2/+7
*
|
Ensure that newly created strings use the most efficient store in debug mode
Victor Stinner
2011-10-04
1
-14/+75
*
|
Replace PyUnicodeObject* with PyObject* where it was inappropriate
Victor Stinner
2011-10-04
1
-40/+40
*
|
unicodeobject.c doesn't make output strings ready in debug mode
Victor Stinner
2011-10-04
1
-0/+4
*
|
More typoes.
Georg Brandl
2011-10-05
1
-7/+7
*
|
Speedup str[a:b:step] for step != 1
Victor Stinner
2011-10-05
1
-3/+23
*
|
Speedup find_maxchar_surrogates() for 32-bit wchar_t
Victor Stinner
2011-10-05
1
-8/+6
*
|
Speedup str[a:b] and PyUnicode_FromKindAndData
Victor Stinner
2011-10-05
1
-27/+49
*
|
Speedup the ASCII decoder
Victor Stinner
2011-10-05
1
-27/+53
*
|
Fix usage og PyUnicode_READY()
Victor Stinner
2011-10-04
1
-5/+9
*
|
_PyUnicode_READY_REPLACE() cannot be used in unicode_subtype_new()
Victor Stinner
2011-10-04
1
-1/+1
*
|
Add DONT_MAKE_RESULT_READY to unicodeobject.c to help detecting bugs
Victor Stinner
2011-10-04
1
-2/+28
*
|
Add assertion to _Py_ReleaseInternedUnicodeStrings() if READY fails
Victor Stinner
2011-10-04
1
-2/+4
*
|
Fix naïve heuristic in unicode slicing (followup to 1b4f886dc9e2)
Antoine Pitrou
2011-10-04
1
-7/+15
*
|
Add a necessary call to PyUnicode_READY() (followup to ab5086539ab9)
Antoine Pitrou
2011-10-04
1
-0/+3
*
|
Optimize string slicing to use the new API
Antoine Pitrou
2011-10-04
1
-17/+15
*
|
When expandtabs() would be a no-op, don't create a duplicate string
Antoine Pitrou
2011-10-04
1
-0/+7
*
|
Migrate str.expandtabs to the new API
Antoine Pitrou
2011-10-04
1
-48/+39
*
|
fix parens
Benjamin Peterson
2011-10-03
1
-1/+1
*
|
fix formatting
Benjamin Peterson
2011-10-03
1
-2/+2
*
|
fix compiler warnings
Benjamin Peterson
2011-10-03
1
-3/+9
*
|
Move in-place Unicode append to its own subfunction
Victor Stinner
2011-10-03
1
-38/+54
*
|
Reindent internal Unicode macros
Victor Stinner
2011-10-03
1
-7/+14
*
|
Document utf8_length and wstr_length states
Victor Stinner
2011-10-03
1
-40/+44
*
|
resize_inplace() sets utf8_length to zero if the utf8 is not shared8
Victor Stinner
2011-10-03
1
-23/+28
*
|
PyUnicode_New() sets utf8_length to zero for latin1
Victor Stinner
2011-10-03
1
-2/+5
*
|
Unicode: raise SystemError instead of ValueError or RuntimeError on invalid
Victor Stinner
2011-10-03
1
-6/+6
*
|
Unicode: document when the wstr pointer is shared with data
Victor Stinner
2011-10-03
1
-1/+23
*
|
Add _PyUnicode_HAS_WSTR_MEMORY() macro
Victor Stinner
2011-10-03
1
-5/+10
[next]