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
*
Miscelaneous ANSIfications. I'm assuming here 'main' should take (int,
Thomas Wouters
2000-07-22
1
-20/+4
*
Fixed problems with UTF error reporting macros and some formatting bugs.
Marc-André Lemburg
2000-07-17
1
-45/+64
*
gcc is being stupid with if/else constructs
Greg Stein
2000-07-17
1
-6/+14
*
stop messing around with goto and just write the macro correctly.
Greg Stein
2000-07-16
1
-7/+6
*
- change \x to mean "byte" also in unicode literals
Fredrik Lundh
2000-07-16
1
-3/+5
*
Fix fatal compiler (MSVC6) error:
Tim Peters
2000-07-16
1
-0/+1
*
Fix to a bug found by Florian Weimer:
Marc-André Lemburg
2000-07-16
1
-1/+2
*
Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either
Thomas Wouters
2000-07-16
1
-2/+2
*
replace PyXXX_Length calls with PyXXX_Size calls
Jeremy Hylton
2000-07-12
1
-1/+1
*
Jeremy Hylton:
Marc-André Lemburg
2000-07-11
1
-2/+4
*
- changed hash calculation for unicode strings. the new
Fredrik Lundh
2000-07-10
1
-18/+20
*
New surrogate support in the UTF-8 codec. By Bill Tutt.
Marc-André Lemburg
2000-07-07
1
-29/+80
*
Added new API PyUnicode_FromEncodedObject() which supports decoding
Marc-André Lemburg
2000-07-07
1
-6/+49
*
Fix to bug #393 (UTF16 codec didn't like empty strings) and
Marc-André Lemburg
2000-07-07
1
-7/+6
*
Two more places where long should be used instead of int. Especially
Sjoerd Mullender
2000-07-07
1
-2/+2
*
Fixed some code that used 'short' to use 'long' instead.
Marc-André Lemburg
2000-07-06
1
-3/+3
*
Fixed a couple of places where 'int' was used where 'long'
Marc-André Lemburg
2000-07-06
1
-7/+7
*
Added new .isalpha() and .isalnum() methods which provide interfaces
Marc-André Lemburg
2000-07-05
1
-0/+66
*
Bill Tutt:
Marc-André Lemburg
2000-07-04
1
-6/+29
*
Marc-Andre Lemburg <mal@lemburg.com>:
Marc-André Lemburg
2000-06-30
1
-1/+1
*
Marc-Andre Lemburg <mal@lemburg.com>:
Marc-André Lemburg
2000-06-30
1
-23/+61
*
Jack Jansen: Use include "" instead of <>; and staticforward declarations
Guido van Rossum
2000-06-29
1
-1/+1
*
Marc-Andre Lemburg <mal@lemburg.com>:
Marc-André Lemburg
2000-06-28
1
-0/+121
*
Marc-Andre Lemburg <mal@lemburg.com>:
Marc-André Lemburg
2000-06-28
1
-1/+4
*
Marc-Andre Lemburg <mal@lemburg.com>:
Marc-André Lemburg
2000-06-18
1
-6/+4
*
Vladimir MARANGOZOV <Vladimir.Marangozov@inrialpes.fr>:
Marc-André Lemburg
2000-06-17
1
-3/+4
*
Marc-Andre Lemburg <mal@lemburg.com>:
Marc-André Lemburg
2000-06-14
1
-0/+28
*
Marc-Andre Lemburg <mal@lemburg.com>:
Marc-André Lemburg
2000-06-10
1
-2/+1
*
Patch from Michael Hudson: improve unclear error message
Andrew M. Kuchling
2000-06-09
1
-1/+1
*
Marc-Andre Lemburg <mal@lemburg.com>:
Marc-André Lemburg
2000-06-08
1
-8/+29
*
Marc-Andre Lemburg <mal@lemburg.com>:
Marc-André Lemburg
2000-06-07
1
-1/+1
*
Minimal change so I can add the rest of MAL's checkin message:
Fred Drake
2000-05-09
1
-1/+1
*
M.-A. Lemburg <mal@lemburg.com>:
Fred Drake
2000-05-09
1
-20/+71
*
Trent Mick:
Guido van Rossum
2000-05-09
1
-7/+14
*
Mark Hammond should get his act into gear (his words :-). Zero length
Guido van Rossum
2000-05-04
1
-2/+7
*
Fix warning detected by VC++ on assignment of Py_UNICODE to char.
Guido van Rossum
2000-05-03
1
-1/+1
*
Vladimir Marangozov's long-awaited malloc restructuring.
Guido van Rossum
2000-05-03
1
-9/+8
*
Mark Hammond withdraws his fix -- the size includes the trailing 0 so
Guido van Rossum
2000-05-03
1
-7/+2
*
Mark Hammond:
Guido van Rossum
2000-05-03
1
-2/+7
*
Marc-Andre Lemburg:
Guido van Rossum
2000-05-01
1
-4/+4
*
Marc-Andre Lemburg:
Guido van Rossum
2000-04-27
1
-14/+16
*
Marc-Andre Lemburg:
Guido van Rossum
2000-04-11
1
-13/+13
*
Marc-Andre Lemburg:
Guido van Rossum
2000-04-10
1
-22/+79
*
Skip Montanaro: add string precisions to calls to PyErr_Format
Guido van Rossum
2000-04-10
1
-22/+22
*
Conrad Huang points out that "if (0 < ch < 256)", while legal C,
Guido van Rossum
2000-04-06
1
-1/+1
*
Fredrik Lundh: eliminate a MSVC compiler warning.
Guido van Rossum
2000-04-05
1
-1/+1
*
Marc-Andre's third try at this bulk patch seems to work (except that
Guido van Rossum
2000-04-05
1
-4/+66
*
Some blank lines.
Guido van Rossum
2000-03-31
1
-0/+3
*
MBCS codecs. (Win32 only.) By Mark Hammond.
Guido van Rossum
2000-03-28
1
-0/+59
*
On 17-Mar-2000, Marc-Andre Lemburg said:
Barry Warsaw
2000-03-20
1
-21/+24
[next]