summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Change float.__str__() and complex.__str__() to returnWalter Dörwald2007-05-312-2/+2
* Add support for width, precision and zeropadding to the %d, %i, %u and %xWalter Dörwald2007-05-311-30/+86
* Merged revisions 55588-55630 via svnmerge fromGuido van Rossum2007-05-291-1/+3
* Change tp_str implementations of exception classesWalter Dörwald2007-05-261-223/+35
* Merged revisions 55545-55587 via svnmerge fromGuido van Rossum2007-05-251-2/+38
* Add interning of unicode strings by copying the functionality fromWalter Dörwald2007-05-252-2/+141
* Simplify %U handling by using Py_UNICODE_COPY.Walter Dörwald2007-05-241-5/+3
* Enable new I/O. Disable creation of old files.Guido van Rossum2007-05-241-0/+8
* Add a format character %S to PyUnicode_FromFormat() thatWalter Dörwald2007-05-231-7/+22
* Make test_base64 pass.Guido van Rossum2007-05-221-4/+13
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-1/+1
* Rename test_xrange.py to test_range.py and fix theWalter Dörwald2007-05-211-2/+2
* repr(range(10)) now returns 'range(0, 10)' for clarity.Walter Dörwald2007-05-211-10/+3
* Change range_repr() to use %R for the start/stop/step attributes.Walter Dörwald2007-05-201-30/+6
* Add a format specifier %R to PyUnicode_FromFormat(), which embedsWalter Dörwald2007-05-196-62/+90
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-1827-174/+247
* Add 'U'/'U#' format characters to Py_BuildValue (and thusWalter Dörwald2007-05-182-73/+280
* Revert last checkin: _PyUnicode_New() allocates spaceWalter Dörwald2007-05-181-1/+1