| Commit message (Expand) | Author | Age | Files | Lines |
* | use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZE | Fredrik Lundh | 2001-06-27 | 1 | -4/+4 |
|
|
* | Encode surrogates in UTF-8 even for a wide Py_UNICODE. | Martin v. Löwis | 2001-06-27 | 1 | -7/+12 |
|
|
* | When decoding UTF-16, don't assume that the buffer is in native endianness | Martin v. Löwis | 2001-06-26 | 1 | -4/+4 |
|
|
* | Support using UCS-4 as the Py_UNICODE type: | Martin v. Löwis | 2001-06-26 | 1 | -30/+89 |
|
|
* | experimental UCS-4 support: added USE_UCS4_STORAGE define to | Fredrik Lundh | 2001-06-26 | 1 | -0/+2 |
|
|
* | experimental UCS-4 support: made compare a bit more robust, in case | Fredrik Lundh | 2001-06-26 | 1 | -11/+14 |
|
|
* | experimental UCS-4 support: don't assume that MS_WIN32 implies | Fredrik Lundh | 2001-06-26 | 1 | -2/+2 |
|
|
* | Fix a mis-indentation in _PyUnicode_New() that caused me to stare at | Guido van Rossum | 2001-06-14 | 1 | -3/+3 |
|
|
* | Fixes [ #430986 ] Buglet in PyUnicode_FromUnicode. | Marc-André Lemburg | 2001-06-07 | 1 | -1/+1 |
|
|
* | fix bogus indentation | Jeremy Hylton | 2001-05-29 | 1 | -1/+1 |
|
|
* | This patch changes the behaviour of the UTF-16 codec family. Only the | Marc-André Lemburg | 2001-05-21 | 1 | -17/+25 |
|
|
* | Remove unused variable | Jeremy Hylton | 2001-05-08 | 1 | -1/+0 |
|
|
* | Make unicode.join() work nice with iterators. This also required a change | Tim Peters | 2001-05-05 | 1 | -11/+15 |
|
|
* | A different approach to the problem reported in | Tim Peters | 2001-04-28 | 1 | -4/+15 |
|
|
* | This patch originated from an idea by Martin v. Loewis who submitted a | Marc-André Lemburg | 2001-04-23 | 1 | -51/+133 |
|
|
* | SF but #417587: compiler warnings compiling 2.1. | Tim Peters | 2001-04-21 | 1 | -3/+0 |
|
|
* | CVS patch 416248: 2.1c1 unicodeobject: unused vrbl cleanup, from Mark Favas. | Tim Peters | 2001-04-19 | 1 | -2/+0 |
|
|
* | Revert previous checkin, which caused test_unicodedata to fail. | Jeremy Hylton | 2001-04-19 | 1 | -33/+0 |
|
|
* | Patch #416953: Cache ASCII characters to speed up ASCII decoding. | Martin v. Löwis | 2001-04-18 | 1 | -0/+33 |
|
|
* | Bug 415514 reported that e.g. | Tim Peters | 2001-04-12 | 1 | -13/+19 |
|
|
* | Fix for SF bug #415514: "%#x" % 0 caused assertion failure/abort. | Tim Peters | 2001-04-12 | 1 | -11/+12 |
|
|
* | reorganized PyUnicode_DecodeUnicodeEscape a bit (in order to make it | Fredrik Lundh | 2001-02-18 | 1 | -110/+69 |
|
|
* | Fixed .capitalize() method of Unicode objects to work like the | Marc-André Lemburg | 2001-01-29 | 1 | -4/+18 |
|
|
* | Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings. | Ka-Ping Yee | 2001-01-24 | 1 | -6/+19 |
|
|
* | Move uchhash functionality into unicodedata (after the recent | Fredrik Lundh | 2001-01-24 | 1 | -9/+11 |
|
|
* | Better error message if ucnhash cannot be found (obscure attribute | Fredrik Lundh | 2001-01-20 | 1 | -3/+8 |
|
|
* | refactored the unicodeobject/ucnhash interface, to hide the | Fredrik Lundh | 2001-01-19 | 1 | -103/+39 |
|
|
* | This patch adds a new builtin unistr() which behaves like str() | Marc-André Lemburg | 2001-01-17 | 1 | -0/+1 |
|
|
* | Added checks to prevent PyUnicode_Count() from dumping core | Marc-André Lemburg | 2001-01-16 | 1 | -8/+19 |
|
|
* | This patch adds a new feature to the builtin charmap codec: | Marc-André Lemburg | 2001-01-06 | 1 | -8/+48 |
|
|
* | This patch changes the default behaviour of the builtin charmap | Marc-André Lemburg | 2001-01-03 | 1 | -13/+8 |
|
|
* | Patch #102940: use only printable Unicode chars in reporting | Andrew M. Kuchling | 2000-12-19 | 1 | -1/+2 |
|
|
* | Fix off-by-one error in split_substring(). Fixes SF bug #122162. | Guido van Rossum | 2000-12-19 | 1 | -1/+1 |
|
|
* | [ Patch #102852 ] Make % error a bit more informative by indicates the | Andrew M. Kuchling | 2000-12-15 | 1 | -2/+3 |
|
|
* | Fox for SF bug #123859: %[duxXo] long formats inconsistent. | Tim Peters | 2000-11-30 | 1 | -3/+1 |
|
|
* | _PyUnicode_Fini(): Initialize the local freelist walking variable `u' | Barry Warsaw | 2000-10-03 | 1 | -2/+3 |
|
|
* | In _PyUnicode_Fini(), decref unicode_empty before tearng down the free | Guido van Rossum | 2000-10-03 | 1 | -2/+2 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -6/+0 |
|
|
* | Derived from Martin's SF patch 110609: support unbounded ints in %d,i,u,x,X,... | Tim Peters | 2000-09-21 | 1 | -24/+68 |
|
|
* | Fix for bug 113934. string*n and unicode*n did no overflow checking at | Tim Peters | 2000-09-09 | 1 | -2/+19 |
|
|
* | changed \x to consume exactly two hex digits, also for unicode | Fredrik Lundh | 2000-09-03 | 1 | -55/+66 |
|
|
* | PyUnicode_AsUTF8String(): /F picks up what I missed: the local var | Barry Warsaw | 2000-08-18 | 1 | -2/+0 |
|
|
* | PyUnicode_AsUTF8String(): Don't need to explicitly incref str since | Barry Warsaw | 2000-08-18 | 1 | -7/+3 |
|
|
* | Fixed a couple of instances where a 0-length string was being | Marc-André Lemburg | 2000-08-14 | 1 | -6/+13 |
|
|
* | Clean up warning from Monterey compiler. | Trent Mick | 2000-08-12 | 1 | -1/+1 |
|
|
* | Removing UTF-16 aware Unicode comparison code. This kind of compare | Marc-André Lemburg | 2000-08-08 | 1 | -0/+33 |
|
|
* | This patch finalizes the move from UTF-8 to a default encoding in | Marc-André Lemburg | 2000-08-03 | 1 | -40/+40 |
|
|
* | Changing the CNRI copyright notice according to CNRI's instructions. | Guido van Rossum | 2000-08-03 | 1 | -1/+1 |
|
|
* | merge Include/my*.h into Include/pyport.h | Peter Schneider-Kamp | 2000-07-31 | 1 | -1/+0 |
|
|
* | Miscelaneous ANSIfications. I'm assuming here 'main' should take (int, | Thomas Wouters | 2000-07-22 | 1 | -20/+4 |
|
|