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
/
Include
/
unicodeobject.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
Untabify C files. Will watch buildbots.
Antoine Pitrou
2010-05-09
1
-240/+240
*
Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal se...
Antoine Pitrou
2009-05-04
1
-4/+2
*
Fix #4846 (Py_UNICODE_ISSPACE causes linker error) by moving the declaration
Marc-André Lemburg
2009-01-05
1
-10/+28
*
Sort UCS-2/UCS-4 name mangling list.
Alexandre Vassalotti
2008-12-28
1
-8/+8
*
Fix name mangling of PyUnicode_ClearFreeList.
Alexandre Vassalotti
2008-12-28
1
-1/+1
*
#4122: On Windows, Py_UNICODE_ISSPACE cannot be used in an extension module:
Amaury Forgeot d'Arc
2008-10-14
1
-1/+1
*
Refactor and clean up str.format() code (and helpers) in advance of optimizat...
Eric Smith
2008-05-30
1
-0/+6
*
Implemented Martin's suggestion to clear the free lists during the garbage co...
Christian Heimes
2008-02-14
1
-0/+4
*
Patch #1970 by Antoine Pitrou: Speedup unicode whitespace and linebreak detec...
Christian Heimes
2008-01-30
1
-1/+8
*
Add stdarg include for va_list to get this to compile on cygwin
Neal Norwitz
2008-01-27
1
-0/+2
*
Backport of several functions from Python 3.0 to 2.6 including PyUnicode_From...
Christian Heimes
2008-01-25
1
-0/+23
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...
Christian Heimes
2007-12-19
1
-2/+2
*
The incremental decoder for utf-7 must preserve its state between calls.
Amaury Forgeot d'Arc
2007-11-20
1
-0/+7
*
Backport r57105 and r57145 from the py3k branch: UTF-32 codecs.
Walter Dörwald
2007-08-17
1
-0/+82
*
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
Martin v. Löwis
2007-07-21
1
-2/+2
*
Variation of patch # 1624059 to speed up checking if an object is a subclass
Neal Norwitz
2007-02-25
1
-1/+2
*
Slightly revised version of patch #1538956:
Marc-André Lemburg
2006-08-14
1
-0/+24
*
Patch #1455898: Incremental mode for "mbcs" codec.
Martin v. Löwis
2006-06-14
1
-0/+7
*
Patch #1359618: Speed-up charmap encoder.
Martin v. Löwis
2006-06-04
1
-0/+5
*
needforspeed: added Py_MEMCPY macro (currently tuned for Visual C only),
Fredrik Lundh
2006-05-28
1
-9/+2
*
needforspeed: added rpartition implementation
Fredrik Lundh
2006-05-26
1
-1/+12
*
needforspeed: partition implementation, part two.
Fredrik Lundh
2006-05-26
1
-0/+9
*
needforspeed: check first *and* last character before doing a full memcmp
Fredrik Lundh
2006-05-23
1
-4/+6
*
needforspeed: use memcpy for "long" strings; use a better algorithm
Fredrik Lundh
2006-05-22
1
-4/+9
*
needforspeed: speed up unicode repeat, unicode string copy
Fredrik Lundh
2006-05-22
1
-4/+7
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-46/+46
*
_PyUnicode_IsWhitespace(),
Tim Peters
2005-10-29
1
-2/+2
*
SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain
Walter Dörwald
2005-08-30
1
-0/+10
*
Correct the handling of 0-termination of PyUnicode_AsWideChar()
Marc-André Lemburg
2004-11-22
1
-2/+8
*
SF patch #1056231: typo in comment (unicodeobject.h)
Raymond Hettinger
2004-10-31
1
-1/+1
*
SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support
Walter Dörwald
2004-09-07
1
-0/+21
*
SF #989185: Drop unicode.iswide() and unicode.width() and add
Hye-Shik Chang
2004-08-04
1
-18/+0
*
Allow string and unicode return types from .encode()/.decode()
Marc-André Lemburg
2004-07-08
1
-0/+11
*
- SF #962502: Add two more methods for unicode type; width() and
Hye-Shik Chang
2004-06-02
1
-0/+18
*
Add rsplit method for str and unicode builtin types.
Hye-Shik Chang
2003-12-15
1
-0/+20
*
Add name mangling for new PyUnicode_FromOrdinal() and fix declaration
Marc-André Lemburg
2002-08-12
1
-1/+3
*
Excise DL_EXPORT from Include.
Mark Hammond
2002-08-12
1
-72/+72
*
Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level.
Marc-André Lemburg
2002-08-11
1
-0/+12
*
Fix for bug [ 561796 ] string.find causes lazy error
Marc-André Lemburg
2002-05-29
1
-1/+2
*
Apply patch diff.txt from SF feature request
Walter Dörwald
2002-04-22
1
-0/+7
*
SF patch #470578: Fixes to synchronize unicode() and str()
Guido van Rossum
2001-10-19
1
-10/+9
*
Patch #435971: UTF-7 codec by Brian Quinlan.
Marc-André Lemburg
2001-09-20
1
-0/+18
*
Fix for bug #462737.
Marc-André Lemburg
2001-09-19
1
-3/+3
*
Possibly the end of SF [#460020] bug or feature: unicode() and subclasses.
Tim Peters
2001-09-11
1
-0/+2
*
Make the Py<type>_Check() macro use PyObject_TypeCheck().
Guido van Rossum
2001-08-30
1
-1/+1
*
Patch #445762: Support --disable-unicode
Martin v. Löwis
2001-08-17
1
-0/+7
*
SF patch #438013 Remove 2-byte Py_UCS2 assumptions
Tim Peters
2001-08-09
1
-6/+0
*
As discussed on python-dev: this patch adds name mangling to
Marc-André Lemburg
2001-07-31
1
-0/+150
*
Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h.
Jeremy Hylton
2001-07-30
1
-0/+17
*
removed "register const" from scalar arguments to the unicode
Fredrik Lundh
2001-06-27
1
-15/+15
[next]