summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* Update the frozen bytecode for __hello__.Guido van Rossum2007-06-121-3/+3
* Fix PyErr_Format() call (missing exception class).Walter Dörwald2007-06-111-3/+2
* Use PyErr_Format() directly instead ofWalter Dörwald2007-06-111-5/+3
* Simplify error formatting. Fix error message inWalter Dörwald2007-06-111-12/+12
* Simplify ste_repr().Walter Dörwald2007-06-111-7/+3
* Short-cut lookup of utf-8 codec, to make import workMartin v. Löwis2007-06-111-0/+17
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-1012-102/+158
* Change most sys attributes that were str8 objects into str objectsWalter Dörwald2007-06-071-7/+7
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-067-126/+98
* Change sys.intern() so that unicode strings can beWalter Dörwald2007-06-051-6/+13
* Change getdefaultencoding() and getfilesystemencoding()Walter Dörwald2007-06-051-2/+2
* Make the name of the C variables match the Python namesWalter Dörwald2007-06-051-7/+7
* Make input9) behave properly with the new I/O library.Guido van Rossum2007-05-271-14/+66
* Change PyErr_Format() to generate a unicode string (by usingWalter Dörwald2007-05-254-43/+32
* Enable new I/O. Disable creation of old files.Guido van Rossum2007-05-242-66/+2
* obcheckin.Guido van Rossum2007-05-221-2/+2
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-228-1247/+1390
* Oops. unicode() builtin was still around.Guido van Rossum2007-05-221-1/+0
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-182-2/+2
* Add 'U'/'U#' format characters to Py_BuildValue (and thusWalter Dörwald2007-05-181-0/+33
* It's ok for __hex__ or __oct__ to return unicode.Guido van Rossum2007-05-151-2/+2
* Obsubmit.Guido van Rossum2007-05-151-2/+2
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-155-1392/+1124
* Merged revisions 55325-55327 via svnmerge fromGuido van Rossum2007-05-143-59/+9
* Merged revisions 55270-55324 via svnmerge fromGuido van Rossum2007-05-143-25/+4
* Merged revisions 55225-55227,55229-55269 via svnmerge fromGuido van Rossum2007-05-116-380/+566
* Remove support for u"..." literals.Guido van Rossum2007-05-111-10/+1
* Be more robust around bytes for e[st]#? formats.Guido van Rossum2007-05-091-4/+8
* More uniform approach to getting (UTF8) bytes out of a string.Guido van Rossum2007-05-091-30/+3
* Make test_marshal pass. Not my best work. :-(Guido van Rossum2007-05-091-5/+38
* Given that ord() of a bytes object of length 1 is defined, it shouldGuido van Rossum2007-05-081-1/+1
* Get rid of 'file' built-in. Get rid of types.StringType and friends.Guido van Rossum2007-05-081-1/+0
* Checkpoint. A b it closer to working pickles and pickletools.Guido van Rossum2007-05-071-0/+10
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-298/+1
* Change UnicodeDecodeError objects so that the 'object' attributeWalter Dörwald2007-05-042-0/+60
* Add 8-bit chr() back as chr8().Guido van Rossum2007-05-041-0/+24
* Compare and hash unicode objects like their UTF-8 representations.Guido van Rossum2007-05-041-1/+5
* More coding by random modification.Guido van Rossum2007-05-045-73/+78
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-039-94/+2
* Kill unichr() itself.Guido van Rossum2007-05-031-3/+0
* Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'.Guido van Rossum2007-05-031-24/+3
* Checkpoint. Manipulated things so that string literals are alwaysGuido van Rossum2007-04-276-8/+7
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-2713-419/+463
* Allow decorators and return annotations to be used together (fixes SF#1697248)Nick Coghlan2007-04-231-1/+1
* Don't crash when nonlocal is used at module level (fixes SF#1705365)Nick Coghlan2007-04-231-5/+10
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-0/+41
* Make it compile with C89.Guido van Rossum2007-04-171-1/+2
* Check in the inevitable change to the version number.Guido van Rossum2007-04-161-2/+2
* Hide list comp variables and support set comprehensionsNick Coghlan2007-04-156-1024/+907
* Support marshal.dump(x, f) where f is not a real file.Guido van Rossum2007-04-132-5/+20