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
/
stringobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed issue #1973: bytes.fromhex('') raises SystemError
Christian Heimes
2008-01-30
1
-2/+2
*
Clean up PyString_Size().
Alexandre Vassalotti
2008-01-07
1
-14/+7
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes
2007-12-19
1
-34/+34
*
Fixed issue #1564: The set implementation should special-case PyUnicode inste...
Christian Heimes
2007-12-10
1
-10/+0
*
Merged revisions 59407-59422 via svnmerge from
Christian Heimes
2007-12-08
1
-19/+44
*
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...
Christian Heimes
2007-12-02
1
-9/+9
*
Remove unused variable.
Georg Brandl
2007-11-25
1
-1/+0
*
Use proper API for iter.__next__().
Georg Brandl
2007-11-24
1
-8/+3
*
Just inline a function, and discover that it can only raise an exception.
Amaury Forgeot d'Arc
2007-11-22
1
-14/+7
*
Removed blocks from several functions in unicodeobject and stringobject where...
Christian Heimes
2007-11-22
1
-57/+3
*
Typo in bytes.replace(): the buffer interface was always used.
Amaury Forgeot d'Arc
2007-11-22
1
-1/+1
*
PyString_AsString is permissive and accepts unicode strings.
Amaury Forgeot d'Arc
2007-11-22
1
-2/+2
*
Rename buffer -> bytearray.
Guido van Rossum
2007-11-21
1
-1/+1
*
Merged revisions 59005-59040 via svnmerge from
Christian Heimes
2007-11-18
1
-2/+13
*
Merged revisions 58886-58929 via svnmerge from
Guido van Rossum
2007-11-10
1
-0/+1
*
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum
2007-11-06
1
-1257/+347
*
Merged revisions 58221-58741 via svnmerge from
Guido van Rossum
2007-11-01
1
-3/+3
*
Sort the method lists for str8 and bytes so differences are more apparent.
Guido van Rossum
2007-10-26
1
-77/+109
*
Patch #1303: Adapt str8 constructor to bytes (now buffer) one.
Georg Brandl
2007-10-24
1
-5/+140
*
Patch 1280, by Alexandre Vassalotti.
Guido van Rossum
2007-10-19
1
-26/+9
*
Patch# 1258 by Christian Heimes: kill basestring.
Guido van Rossum
2007-10-16
1
-56/+2
*
For PEP3137: Adds missing methods to the mutable PyBytes object (soon
Gregory P. Smith
2007-10-16
1
-986/+37
*
Replace all (locale-dependent) uses of isupper(), tolower(), etc., by
Guido van Rossum
2007-10-09
1
-65/+302
*
Change PyBuffer to Py_buffer to be consistent with other non-object structure...
Travis E. Oliphant
2007-09-23
1
-1/+1
*
Remove the simple slicing API. All slicing is now done with slice objects.
Thomas Wouters
2007-08-30
1
-24/+1
*
Merge the trunk changes in. Breaks socket.ssl for now.
Thomas Wouters
2007-08-28
1
-0/+11
*
Merged in py3k-buffer branch to main line. All objects now use the buffer pr...
Travis E. Oliphant
2007-08-18
1
-42/+5
*
Format bools properly in %d.
Martin v. Löwis
2007-08-14
1
-2/+5
*
Kill all uses and definitions of tp_print under Objects/. (Others will follow.)
Guido van Rossum
2007-08-07
1
-66/+1
*
Merged revisions 56753-56781 via svnmerge from
Guido van Rossum
2007-08-06
1
-2/+2
*
Fix merge breakage.
Martin v. Löwis
2007-07-21
1
-1/+1
*
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis
2007-07-21
1
-65/+62
*
Merged revisions 56301-56442 via svnmerge from
Guido van Rossum
2007-07-18
1
-1/+2
*
Fix a subtle bug in PyString_Repr().
Guido van Rossum
2007-07-03
1
-2/+3
*
Patch by Ron Adam to make repr(str8(...)) return something looking like
Guido van Rossum
2007-06-15
1
-2/+2
*
Merged revisions 55817-55961 via svnmerge from
Guido van Rossum
2007-06-13
1
-37/+41
*
Make identifiers str (not str8) objects throughout.
Martin v. Löwis
2007-06-10
1
-1/+11
*
Don't lie in error messages from str8.
Guido van Rossum
2007-06-07
1
-9/+9
*
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
Walter Dörwald
2007-05-18
1
-18/+29
*
Merged revisions 55342-55406 via svnmerge from
Guido van Rossum
2007-05-17
1
-2/+0
*
More coding by random modification.
Guido van Rossum
2007-05-04
1
-2/+2
*
Fix type name (str has been renamed to str8).
Walter Dörwald
2007-05-03
1
-1/+1
*
Get rid of all #ifdef Py_USING_UNICODE (it is always present now).
Guido van Rossum
2007-05-03
1
-82/+5
*
Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'.
Guido van Rossum
2007-05-03
1
-1/+1
*
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum
2007-04-27
1
-8/+16
*
Rough and dirty job -- allow concatenation of bytes and arbitrary
Guido van Rossum
2007-04-13
1
-0/+2
*
Fix a refleak in PyString_Format.
Georg Brandl
2007-02-26
1
-1/+5
*
Merged revisions 53875-53911 via svnmerge from
Thomas Wouters
2007-02-25
1
-5/+12
*
Merged the int/long unification branch, by very crude means (sorry Thomas!).
Guido van Rossum
2007-01-14
1
-0/+12
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
1
-14/+31
[next]