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
*
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
*
Merge current trunk into p3yk. This includes the PyNumber_Index API change,
Thomas Wouters
2006-08-21
1
-4/+8
*
Make the it_index field in the str/unicode iterators Py_ssize_t's.
Guido van Rossum
2006-08-17
1
-6/+9
*
Completely get rid of PyClass and PyInstance.
Guido van Rossum
2006-08-17
1
-1/+120
*
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters
2006-08-11
1
-167/+168
*
Get rid of most of the flags (in tp_flags) that keep track of various
Guido van Rossum
2006-07-27
1
-5/+2
*
Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn
Thomas Wouters
2006-06-08
1
-38/+38
*
Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.
Thomas Wouters
2006-05-27
1
-438/+970
*
Merge with trunk up to revision 45620.
Thomas Wouters
2006-04-21
1
-1/+1
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-113/+103
*
Get rid of remnants of integer division
Neal Norwitz
2006-03-24
1
-1/+0
*
Checking in the code for PEP 357.
Guido van Rossum
2006-03-07
1
-3/+6
*
SF #1444030: Fix several potential defects found by Coverity.
Hye-Shik Chang
2006-03-07
1
-1/+1
*
Change int to Py_ssize_t in several places.
Martin v. Löwis
2006-03-07
1
-4/+12
*
Revert backwards-incompatible const changes.
Martin v. Löwis
2006-02-27
1
-1/+1
*
Use Py_ssize_t in helper function between Py_ssize_t-using functions.
Thomas Wouters
2006-02-16
1
-2/+2
*
Use Py_ssize_t for counts and sizes.
Martin v. Löwis
2006-02-16
1
-5/+5
*
Support %zd in PyErr_Format and PyString_FromFormat.
Martin v. Löwis
2006-02-16
1
-0/+21
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-156/+157
*
Add const to several API functions that take char *.
Jeremy Hylton
2005-12-10
1
-1/+1
[next]