summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* Remove references to unicode from help(str).Collin Winter2007-08-071-2/+2
* Merged revisions 56753-56781 via svnmerge fromGuido van Rossum2007-08-062-4/+4
* Change PyUnicode_FromString[AndSize] to expect UTF-8.Martin v. Löwis2007-08-052-17/+15
* Merged revisions 56492-56752 via svnmerge fromGuido van Rossum2007-08-052-7/+7
* Fix an obvious bug caused by a switch to Unicode.Guido van Rossum2007-08-041-1/+2
* Add a default __prepare__() method to 'type', so it can be calledGuido van Rossum2007-08-021-0/+10
* Changes to long and float by Jeffrey Jasskin to conform to PEP 3141.Guido van Rossum2007-08-012-35/+54
* Kill div, mod and divmod on complex (already deprecated in 2.x).Guido van Rossum2007-08-011-55/+15
* Bytes (which are the input for decoding) are mutable now. If a decodingWalter Dörwald2007-07-301-19/+35
* Fix the docstrings for keys(), items(), values() (especially the latter).Guido van Rossum2007-07-271-61/+6
* Fix merge breakage.Martin v. Löwis2007-07-214-15/+15
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-2133-916/+844
* Fix test_pickle, by reverting the string opcodes (S, T, U) to returningGuido van Rossum2007-07-191-5/+3
* Fix a bug in PyUnicode_FromStringAndSize() with signed characters.Guido van Rossum2007-07-191-4/+4
* Merged revisions 56301-56442 via svnmerge fromGuido van Rossum2007-07-182-2/+4
* Change Py_BuildValue to generate Unicode objects forMartin v. Löwis2007-07-182-8/+15
* Three patches by Amaury Forgeot d'Arc; SF patch# 1754484.Guido van Rossum2007-07-161-1/+1
* Make chr() and ord() return/accept surrogate pairs in narrow builds.Guido van Rossum2007-07-151-10/+9
* Fixed a refcount leak in _PyUnicode_AsDefaultEncodedString().Guido van Rossum2007-07-121-4/+1
* Revert a wrong commit.Thomas Heller2007-07-111-14/+7
* Must create heaptypes with unicode names.Thomas Heller2007-07-111-7/+14
* Remove unused local variable.Thomas Heller2007-07-111-1/+0
* Make test_descr.py pass. Had to disable a few tests, remove referencesGuido van Rossum2007-07-114-12/+13
* Fix a subtle bug in PyString_Repr().Guido van Rossum2007-07-031-2/+3
* Change float.__getformat__() to return a unicode string.Walter Dörwald2007-06-221-3/+3
* Silence GCC warning about uninitialzed variable.Walter Dörwald2007-06-201-12/+5
* Patch by Ron Adam: Don't use u prefix in unicode error messagesWalter Dörwald2007-06-201-6/+6
* Merged revisions 55962-56019 via svnmerge fromGuido van Rossum2007-06-182-157/+93
* Patch by Ron Adam to make repr(str8(...)) return something looking likeGuido van Rossum2007-06-151-2/+2
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-138-150/+229
* Discard unused function.Guido van Rossum2007-06-131-34/+0
* Make it compile with GCC 2.96.Guido van Rossum2007-06-131-3/+5
* Rip out the file object's implementation.Guido van Rossum2007-06-121-2121/+20
* Mention name of left operand, if "foo in unicode_string"Walter Dörwald2007-06-121-2/+3
* Minimal changes to make the "freeze" tool work again.Guido van Rossum2007-06-121-17/+12
* Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U,Walter Dörwald2007-06-113-44/+66
* Simplify error formatting and type_repr().Walter Dörwald2007-06-111-8/+4
* Simplify error formatting.Walter Dörwald2007-06-111-10/+10
* Simplify error formatting (no default encoding required).Walter Dörwald2007-06-111-3/+2
* Check unicode identifier directly instead of convertingWalter Dörwald2007-06-111-4/+4
* __module__ is a unicode string now:Walter Dörwald2007-06-111-5/+2
* Expect unicode in class_name.Martin v. Löwis2007-06-101-3/+3
* Fix getclassname. Fixes test_descrtut.Martin v. Löwis2007-06-101-2/+2
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-1015-161/+222
* Don't lie in error messages from str8.Guido van Rossum2007-06-071-9/+9
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-2/+4
* Use PyUnicode_FromFormat() directly.Walter Dörwald2007-06-061-5/+3
* unichr() is named chr() now => fix name in error message.Walter Dörwald2007-06-051-2/+2
* Change int_oct() and int_hex() to return unicode objects.Walter Dörwald2007-06-051-9/+5
* PyUnicode_FromFormat() does support %02x, so use itWalter Dörwald2007-06-051-17/+14