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
/
unicodeobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Check return value of PyType_Ready(&EncodingMapType)
Christian Heimes
2013-07-20
1
-1/+2
|
\
|
*
Check return value of PyType_Ready(&EncodingMapType)
Christian Heimes
2013-07-20
1
-1/+2
*
|
Issue #18408: Don't check unicode consistency in _PyUnicode_HAS_UTF8_MEMORY()
Victor Stinner
2013-07-15
1
-4/+2
*
|
Issue #18408: _PyUnicodeWriter_Finish() now clears its buffer attribute in all
Victor Stinner
2013-07-08
1
-3/+6
*
|
Issue #18408: Fix _PyUnicodeWriter_Finish(): clear writer->buffer,
Victor Stinner
2013-07-08
1
-2/+5
*
|
Issue #18203: Fix _Py_DecodeUTF8_surrogateescape(), use PyMem_RawMalloc() as ...
Victor Stinner
2013-07-07
1
-2/+2
*
|
Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initialization
Victor Stinner
2013-07-07
1
-3/+3
*
|
Fix ref leak in error case of unicode find, count, formatlong
Christian Heimes
2013-06-29
1
-3/+11
*
|
Fix ref leak in error case of unicode index
Christian Heimes
2013-06-29
1
-2/+6
*
|
Fix ref leak in error case of unicode rindex and rfind
Christian Heimes
2013-06-29
1
-4/+12
*
|
Fix memory leak in endswith
Christian Heimes
2013-06-29
1
-1/+1
*
|
Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise
Serhiy Storchaka
2013-06-23
1
-1/+1
|
\
\
|
|
/
|
*
Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise
Serhiy Storchaka
2013-06-23
1
-2/+7
*
|
merge 3.3 (#18183)
Benjamin Peterson
2013-06-10
1
-24/+19
|
\
\
|
|
/
|
*
remove MAX_MAXCHAR because it's unsafe for computing maximum codepoitn value ...
Benjamin Peterson
2013-06-10
1
-31/+26
*
|
Issue #9566: Fix compiler warning on Windows 64-bit
Victor Stinner
2013-06-04
1
-3/+5
*
|
Issue #17237: Fix crash in the ASCII decoder on m68k.
Antoine Pitrou
2013-05-11
1
-0/+9
|
\
\
|
|
/
|
*
Issue #17237: Fix crash in the ASCII decoder on m68k.
Antoine Pitrou
2013-05-11
1
-0/+9
*
|
Fix uninitialized value in charmap_decode_mapping()
Victor Stinner
2013-05-06
1
-1/+1
*
|
Issue #7330: Implement width and precision (ex: "%5.3s") for the format string
Victor Stinner
2013-05-06
1
-46/+109
*
|
Partial revert of changeset 9744b2df134c
Victor Stinner
2013-04-18
1
-5/+4
*
|
Split PyUnicode_DecodeCharmap() into subfunction for readability
Victor Stinner
2013-04-17
1
-178/+213
*
|
Fix bug in Unicode decoders related to _PyUnicodeWriter
Victor Stinner
2013-04-17
1
-6/+14
*
|
Fix typo in unicode_decode_call_errorhandler_writer()
Victor Stinner
2013-04-17
1
-1/+1
*
|
Close #17694: Add minimum length to _PyUnicodeWriter
Victor Stinner
2013-04-17
1
-54/+57
*
|
Cleanup PyUnicode_Contains()
Victor Stinner
2013-04-14
1
-11/+6
*
|
Minor change: fix character in do_strip() for the ASCII case
Victor Stinner
2013-04-14
1
-2/+2
*
|
Cleanup PyUnicode_Append()
Victor Stinner
2013-04-14
1
-18/+14
*
|
PyUnicode_Join(): move use_memcpy test out of the loop to cleanup and optimiz...
Victor Stinner
2013-04-14
1
-20/+28
*
|
Optimize repr(str): use _PyUnicode_FastCopyCharacters() when no character is ...
Victor Stinner
2013-04-14
1
-69/+78
*
|
Optimize ascii(str): don't encode/decode repr if repr is already ASCII
Victor Stinner
2013-04-14
1
-1/+1
*
|
Add _PyUnicodeWriter_WriteCharInline()
Victor Stinner
2013-04-14
1
-71/+35
*
|
Issue #16061: Speed up str.replace() for replacing 1-character strings.
Serhiy Storchaka
2013-04-13
1
-26/+38
*
|
Close #17693: Rewrite CJK decoders to use the _PyUnicodeWriter API instead of
Victor Stinner
2013-04-11
1
-0/+10
*
|
Issue #17615: On Windows (VS2010), Performances of wmemcmp() to compare Unicode
Victor Stinner
2013-04-09
1
-9/+0
*
|
replace(): only call PyUnicode_DATA(u) once
Victor Stinner
2013-04-09
1
-3/+4
*
|
Write super-fast version of str.strip(), str.lstrip() and str.rstrip() for pu...
Victor Stinner
2013-04-09
1
-19/+45
*
|
Don't calls macros in PyUnicode_WRITE() parameters
Victor Stinner
2013-04-09
1
-2/+10
*
|
Fix do_strip(): don't call PyUnicode_READ() in Py_UNICODE_ISSPACE() to not call
Victor Stinner
2013-04-09
1
-3/+10
*
|
Fix _PyUnicode_XStrip()
Victor Stinner
2013-04-09
1
-10/+18
*
|
Optimize PyUnicode_DecodeCharmap()
Victor Stinner
2013-04-09
1
-7/+9
*
|
Optimize make_bloom_mask(), used by str.strip(), str.lstrip() and str.rstrip()
Victor Stinner
2013-04-09
1
-5/+27
*
|
Use PyUnicode_READ() instead of PyUnicode_READ_CHAR()
Victor Stinner
2013-04-09
1
-6/+22
*
|
Add fast-path in PyUnicode_DecodeCharmap() for pure 8 bit encodings:
Victor Stinner
2013-04-09
1
-1/+26
*
|
Issue #17615: Comparing two Unicode strings now uses wmemcmp() when possible
Victor Stinner
2013-04-08
1
-0/+22
*
|
Issue #17615: Expand expensive PyUnicode_READ() macro in unicode_compare():
Victor Stinner
2013-04-08
1
-17/+77
*
|
fix unused variable
Victor Stinner
2013-04-03
1
-1/+0
*
|
Close #16757: Avoid calling the expensive _PyUnicode_FindMaxChar() function
Victor Stinner
2013-04-03
1
-7/+10
*
|
Add _PyUnicodeWriter_WriteSubstring() function
Victor Stinner
2013-04-02
1
-9/+39
*
|
merge
Raymond Hettinger
2013-03-23
1
-1/+4
|
\
\
|
|
/
[next]