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
*
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
*
PyUnicode_Join() checks output length in debug mode
Victor Stinner
2011-10-03
1
-9/+21
*
Fix a compiler warning in PyUnicode_Append()
Victor Stinner
2011-10-03
1
-8/+14
*
Improve string forms and PyUnicode_Resize() documentation
Victor Stinner
2011-10-03
1
-2/+2
*
Simplify unicode_resizable(): singletons reference count is at least 2
Victor Stinner
2011-10-03
1
-13/+7
*
_PyUnicode_CheckConsistency() checks utf8 field consistency
Victor Stinner
2011-10-03
1
-0/+6
*
unicode_subtype_new() copies also the ascii flag
Victor Stinner
2011-10-03
1
-1/+1
*
unicode_kind_name() doesn't check consistency anymore
Victor Stinner
2011-10-03
1
-1/+2
*
PyUnicode_Ready() now sets ascii=1 if maxchar < 128
Victor Stinner
2011-10-03
1
-15/+14
*
Create _PyUnicode_READY_REPLACE() to reuse singleton
Victor Stinner
2011-10-03
1
-22/+72
*
Fix resize_compact() and resize_inplace(); reenable full resize optimizations
Victor Stinner
2011-10-03
1
-10/+21
*
resize_inplace() has been fixed: reenable this optimization
Victor Stinner
2011-10-03
1
-3/+0
*
_PyUnicode_Dump() indicates if wstr and/or utf8 are shared
Victor Stinner
2011-10-03
1
-15/+16
*
Fix resize_inplace(): update shared utf8 pointer
Victor Stinner
2011-10-03
1
-1/+4
*
Disable unicode_resize() optimization on Windows (16-bit wchar_t)
Victor Stinner
2011-10-03
1
-0/+4
*
_PyUnicode_Ready() for 16-bit wchar_t
Victor Stinner
2011-10-03
1
-0/+2
*
Fix compilation error on Windows
Victor Stinner
2011-10-03
1
-2/+3
*
Use PyUnicode_WCHAR_KIND to check if a string is a wstr string
Victor Stinner
2011-10-03
1
-9/+11
*
Add _PyUnicode_CheckConsistency() macro to help debugging
Victor Stinner
2011-10-03
1
-37/+98
*
In release mode, PyUnicode_InternInPlace() does nothing if the input is NULL or
Victor Stinner
2011-10-03
1
-3/+7
*
PyUnicode_Append() now works in-place when it's possible
Victor Stinner
2011-10-03
1
-10/+71
*
Rewrite PyUnicode_Resize()
Victor Stinner
2011-10-03
1
-95/+207
*
Add _PyUnicode_HAS_UTF8_MEMORY() macro
Victor Stinner
2011-10-02
1
-6/+11
*
Write _PyUnicode_Dump() to help debugging
Victor Stinner
2011-10-03
1
-0/+23
*
PyUnicode_CopyCharacters() fails when copying latin1 into ascii
Victor Stinner
2011-10-02
1
-7/+56
*
unicode_convert_wchar_to_ucs4() cannot fail
Victor Stinner
2011-10-02
1
-10/+4
*
Add _PyUnicode_DATA_ANY(op) private macro
Victor Stinner
2011-10-02
1
-17/+17
[next]