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
...
*
|
|
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
*
|
|
unicode_empty and unicode_latin1 are PyObject* objects, not PyUnicodeObject*
Victor Stinner
2011-10-02
1
-15/+15
*
|
|
PyUnicode_FindChar() raises a IndexError on invalid index
Victor Stinner
2011-10-01
1
-0/+4
*
|
|
Optimize _PyUnicode_AsKind() for UCS1->UCS4 and UCS2->UCS4
Victor Stinner
2011-10-01
1
-25/+43
*
|
|
Fix usage of PyUnicode_READY() in PyUnicode_GetLength()
Victor Stinner
2011-10-01
1
-1/+1
*
|
|
PyUnicode_WriteChar() raises IndexError on invalid index
Victor Stinner
2011-10-01
1
-7/+21
*
|
|
PyUnicode_ReadChar() raises a IndexError if the index in invalid
Victor Stinner
2011-10-01
1
-14/+11
*
|
|
PyUnicode_FromKindAndData() raises a ValueError if the kind is unknown
Victor Stinner
2011-10-01
1
-1/+1
*
|
|
Optimize unicode_subtype_new(): don't encode to wchar_t and decode from wchar_t
Victor Stinner
2011-10-01
1
-42/+77
*
|
|
Add _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() macros
Victor Stinner
2011-10-01
1
-41/+54
*
|
|
Issue 13085: Fix some memory leaks. Patch by Stefan Krah.
Martin v. Löwis
2011-10-01
1
-0/+1
*
|
|
merge heads
Benjamin Peterson
2011-10-01
1
-3/+6
|
\
\
\
|
*
|
|
PyUnicode_Substring() now accepts end bigger than string length
Victor Stinner
2011-10-01
1
-3/+6
*
|
|
|
remove reference to non-existent file
Benjamin Peterson
2011-10-01
1
-2/+1
|
/
/
/
*
|
|
Ooops, avoid a division by zero in unicode_repeat()
Victor Stinner
2011-10-01
1
-1/+1
*
|
|
PyUnicode_FromObject() ensures that its output is a ready string
Victor Stinner
2011-10-01
1
-0/+2
*
|
|
I want a super fast 'a' * n!
Victor Stinner
2011-10-01
1
-15/+10
*
|
|
Fix usage of PyUnicode_READY in unicodeobject.c
Victor Stinner
2011-10-01
1
-19/+12
*
|
|
Remove private substring() function, reuse public PyUnicode_Substring()
Victor Stinner
2011-09-30
1
-62/+22
*
|
|
Optimize PyUnicode_Copy(): don't recompute maximum character
Victor Stinner
2011-09-30
1
-3/+28
*
|
|
PyUnicode_FromObject() reuses PyUnicode_Copy()
Victor Stinner
2011-09-30
1
-4/+2
*
|
|
Add PyUnicode_Copy() function, include it to the public API
Victor Stinner
2011-09-30
1
-19/+21
*
|
|
PyUnicode_CopyCharacters() uses exceptions instead of assertions
Victor Stinner
2011-09-30
1
-2/+4
*
|
|
_PyUnicode_Ready() cannot be used on ready strings anymore
Victor Stinner
2011-09-29
1
-23/+15
*
|
|
Move _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() outside unicodeobject.h
Victor Stinner
2011-09-29
1
-0/+8
*
|
|
Add a note in PyUnicode_CopyCharacters() doc: it doesn't write null character
Victor Stinner
2011-09-29
1
-41/+42
[prev]
[next]