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
*
SF Patch #1007087: Return new string for single subclass joins (Bug #1001011)
Raymond Hettinger
2004-08-23
1
-12/+8
*
This was quite a dark bug in my recent in-place string concatenation
Armin Rigo
2004-08-07
1
-1/+2
*
Fixed some compiler warnings.
Armin Rigo
2004-08-07
1
-2/+2
*
Subclasses of string can no longer be interned. The semantics of
Jeremy Hylton
2004-08-07
1
-22/+12
*
.encode()/.decode() patch part 2.
Marc-André Lemburg
2004-07-08
1
-0/+10
*
Allow string and unicode return types from .encode()/.decode()
Marc-André Lemburg
2004-07-08
1
-2/+24
*
sizeof(char) is 1, by definition, so get rid of that expression in
Tim Peters
2004-06-27
1
-12/+7
*
Patch #774665: Make Python LC_NUMERIC agnostic.
Martin v. Löwis
2004-06-08
1
-1/+1
*
[SF #866875] Add a specialized routine for one character
Hye-Shik Chang
2004-01-05
1
-45/+95
*
There are places in Python which assume bytes have 8-bits. Formalize that a
Skip Montanaro
2003-12-22
1
-4/+0
*
Add rsplit method for str and unicode builtin types.
Hye-Shik Chang
2003-12-15
1
-0/+124
*
- Removed FutureWarnings related to hex/oct literals and conversions
Guido van Rossum
2003-11-29
1
-17/+19
*
Add optional fillchar argument to ljust(), rjust(), and center() string methods.
Raymond Hettinger
2003-11-26
1
-13/+18
*
Avoid confusing name for the 3rd argument to str.replace().
Fred Drake
2003-10-22
1
-3/+3
*
Patch #825679: Clarify semantics of .isfoo on empty strings.
Martin v. Löwis
2003-10-18
1
-12/+13
*
SF bug #795506: Wrong handling of string format code for float values.
Raymond Hettinger
2003-08-27
1
-0/+3
*
Fix whitespace.
Walter Dörwald
2003-06-18
1
-1/+1
*
Attempt to make all the various string *strip methods the same.
Neal Norwitz
2003-04-10
1
-9/+9
*
Reformat a few docstrings that caused line wraps in help() output.
Guido van Rossum
2003-04-09
1
-6/+6
*
Fix PyString_Format() so that '%c' % u'a' returns u'a'
Walter Dörwald
2003-03-31
1
-0/+7
*
Implement appropriate __getnewargs__ for all immutable subclassable builtin
Guido van Rossum
2003-01-29
1
-0/+7
*
SF patch #664192 bug #661913: inconsistent error messages between string
Raymond Hettinger
2003-01-15
1
-2/+2
*
GvR's idea to use memset() for the most common special case of repeating
Raymond Hettinger
2003-01-06
1
-1/+5
*
Optimize string_repeat.
Raymond Hettinger
2003-01-06
1
-2/+11
*
Patch for bug #659709: bogus computation of float length
Marc-André Lemburg
2002-12-29
1
-6/+16
*
SF patch #659536: Use PyArg_UnpackTuple where possible.
Raymond Hettinger
2002-12-29
1
-1/+1
*
Patch #650653: Raise always value error if the table is not 256 bytes long.
Martin v. Löwis
2002-12-12
1
-6/+6
*
Patch #614055: Support OpenVMS.
Martin v. Löwis
2002-12-06
1
-1/+5
*
Add nb_remainder (i.e. __mod__) slot to str type. Fixes SF bug #615506.
Neil Schemenauer
2002-11-18
1
-2/+22
*
Fix SF # 635969, No error "not all arguments converted"
Neal Norwitz
2002-11-12
1
-1/+2
*
Back out #479898.
Martin v. Löwis
2002-10-11
1
-69/+15
*
Fix a nasty endcase reported by Armin Rigo in SF bug 618623:
Guido van Rossum
2002-10-11
1
-2/+6
*
Undo this part of the previous checkin:
Guido van Rossum
2002-10-09
1
-3/+4
*
The string formatting code has a test to switch to Unicode when %s
Guido van Rossum
2002-10-09
1
-2/+5
*
Include wctype.h.
Martin v. Löwis
2002-10-07
1
-1/+2
*
Patch #479898: Use multibyte C library for printing strings if available.
Martin v. Löwis
2002-10-07
1
-15/+68
*
Fix warnings on 64-bit platforms about casts from pointers to ints.
Guido van Rossum
2002-09-12
1
-1/+2
*
Fix escaping of non-ASCII characters.
Martin v. Löwis
2002-09-09
1
-2/+4
*
Check whether a string resize is necessary at the end
Walter Dörwald
2002-09-03
1
-3/+4
*
PEP 293 implemention (from SF patch http://www.python.org/sf/432401)
Walter Dörwald
2002-09-02
1
-2/+6
*
string_contains(): speed up by avoiding function calls where
Guido van Rossum
2002-08-24
1
-9/+12
*
Code by Inyeol Lee, submitted to SF bug 595350, to implement
Guido van Rossum
2002-08-23
1
-24/+33
*
Fix some endcase bugs in unicode rfind()/rindex() and endswith().
Guido van Rossum
2002-08-20
1
-1/+1
*
SF patch 576101, by Oren Tirosh: alternative implementation of
Guido van Rossum
2002-08-19
1
-71/+108
*
Call me anal, but there was a particular phrase that was speading to
Guido van Rossum
2002-08-19
1
-3/+3
*
Get this to compile again if Py_USING_UNICODE is not defined.
Neal Norwitz
2002-08-16
1
-1/+1
*
More changes of DeprecationWarning to FutureWarning.
Guido van Rossum
2002-08-14
1
-1/+1
*
Check for trailing backslash. Fixes #593656.
Martin v. Löwis
2002-08-14
1
-5/+8
*
Patch #505705: Remove eval in pickle and cPickle.
Martin v. Löwis
2002-08-14
1
-3/+157
*
Implement stage B0 of PEP 237: add warnings for operations that
Guido van Rossum
2002-08-11
1
-0/+6
[next]