summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
Commit message (Expand)AuthorAgeFilesLines
* reorganized PyUnicode_DecodeUnicodeEscape a bit (in order to make itFredrik Lundh2001-02-181-110/+69
* Fixed .capitalize() method of Unicode objects to work like theMarc-André Lemburg2001-01-291-4/+18
* Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings.Ka-Ping Yee2001-01-241-6/+19
* Move uchhash functionality into unicodedata (after the recentFredrik Lundh2001-01-241-9/+11
* Better error message if ucnhash cannot be found (obscure attributeFredrik Lundh2001-01-201-3/+8
* refactored the unicodeobject/ucnhash interface, to hide theFredrik Lundh2001-01-191-103/+39
* This patch adds a new builtin unistr() which behaves like str()Marc-André Lemburg2001-01-171-0/+1
* Added checks to prevent PyUnicode_Count() from dumping coreMarc-André Lemburg2001-01-161-8/+19
* This patch adds a new feature to the builtin charmap codec:Marc-André Lemburg2001-01-061-8/+48
* This patch changes the default behaviour of the builtin charmapMarc-André Lemburg2001-01-031-13/+8
* Patch #102940: use only printable Unicode chars in reportingAndrew M. Kuchling2000-12-191-1/+2
* Fix off-by-one error in split_substring(). Fixes SF bug #122162.Guido van Rossum2000-12-191-1/+1
* [ Patch #102852 ] Make % error a bit more informative by indicates theAndrew M. Kuchling2000-12-151-2/+3
* Fox for SF bug #123859: %[duxXo] long formats inconsistent.Tim Peters2000-11-301-3/+1
* _PyUnicode_Fini(): Initialize the local freelist walking variable `u'Barry Warsaw2000-10-031-2/+3
* In _PyUnicode_Fini(), decref unicode_empty before tearng down the freeGuido van Rossum2000-10-031-2/+2
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-6/+0
* Derived from Martin's SF patch 110609: support unbounded ints in %d,i,u,x,X,...Tim Peters2000-09-211-24/+68
* Fix for bug 113934. string*n and unicode*n did no overflow checking atTim Peters2000-09-091-2/+19
* changed \x to consume exactly two hex digits, also for unicodeFredrik Lundh2000-09-031-55/+66
* PyUnicode_AsUTF8String(): /F picks up what I missed: the local varBarry Warsaw2000-08-181-2/+0
* PyUnicode_AsUTF8String(): Don't need to explicitly incref str sinceBarry Warsaw2000-08-181-7/+3
* Fixed a couple of instances where a 0-length string was beingMarc-André Lemburg2000-08-141-6/+13
* Clean up warning from Monterey compiler.Trent Mick2000-08-121-1/+1
* Removing UTF-16 aware Unicode comparison code. This kind of compareMarc-André Lemburg2000-08-081-0/+33
* This patch finalizes the move from UTF-8 to a default encoding inMarc-André Lemburg2000-08-031-40/+40
* Changing the CNRI copyright notice according to CNRI's instructions.Guido van Rossum2000-08-031-1/+1
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-311-1/+0
* Miscelaneous ANSIfications. I'm assuming here 'main' should take (int,Thomas Wouters2000-07-221-20/+4
* Fixed problems with UTF error reporting macros and some formatting bugs.Marc-André Lemburg2000-07-171-45/+64
* gcc is being stupid with if/else constructsGreg Stein2000-07-171-6/+14
* stop messing around with goto and just write the macro correctly.Greg Stein2000-07-161-7/+6
* - change \x to mean "byte" also in unicode literalsFredrik Lundh2000-07-161-3/+5
* Fix fatal compiler (MSVC6) error:Tim Peters2000-07-161-0/+1
* Fix to a bug found by Florian Weimer:Marc-André Lemburg2000-07-161-1/+2
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-2/+2
* replace PyXXX_Length calls with PyXXX_Size callsJeremy Hylton2000-07-121-1/+1
* Jeremy Hylton:Marc-André Lemburg2000-07-111-2/+4
* - changed hash calculation for unicode strings. the newFredrik Lundh2000-07-101-18/+20
* New surrogate support in the UTF-8 codec. By Bill Tutt.Marc-André Lemburg2000-07-071-29/+80
* Added new API PyUnicode_FromEncodedObject() which supports decodingMarc-André Lemburg2000-07-071-6/+49
* Fix to bug #393 (UTF16 codec didn't like empty strings) andMarc-André Lemburg2000-07-071-7/+6
* Two more places where long should be used instead of int. EspeciallySjoerd Mullender2000-07-071-2/+2
* Fixed some code that used 'short' to use 'long' instead.Marc-André Lemburg2000-07-061-3/+3
* Fixed a couple of places where 'int' was used where 'long'Marc-André Lemburg2000-07-061-7/+7
* Added new .isalpha() and .isalnum() methods which provide interfacesMarc-André Lemburg2000-07-051-0/+66
* Bill Tutt:Marc-André Lemburg2000-07-041-6/+29
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-301-1/+1
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-301-23/+61
* Jack Jansen: Use include "" instead of <>; and staticforward declarationsGuido van Rossum2000-06-291-1/+1