summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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
* Make readonly members defined in C throw an AttributeError on modification. T...Collin Winter2007-03-281-1/+1
* Looks like this file wasn't checked in.Guido van Rossum2007-03-271-168/+170
* Fix refleak in compiler.Guido van Rossum2007-03-211-1/+4
* Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also...Collin Winter2007-03-213-27/+20
* "from ... import x" should not be a syntax error... makeGeorg Brandl2007-03-191-2/+6
* Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ...Georg Brandl2007-03-182-79/+72
* Update the silly version number.Guido van Rossum2007-03-181-2/+2
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-188-166/+303
* Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir.Georg Brandl2007-03-101-9/+10
* Commit version bump.Brett Cannon2007-02-271-2/+2
* SF patch #1669633, add methods for bytes from Pete Shinners.Neal Norwitz2007-02-271-0/+4
* Provisional implementation of PEP 3104.Jeremy Hylton2007-02-275-802/+932
* Remove the exceptions builtin module, all the exceptions are already builtin.Neal Norwitz2007-02-262-3/+3
* Make it so TypeError is raised if an instance of an object is put in anBrett Cannon2007-02-261-19/+8
* Two more patches by Tony Lownds (SF# 1607548).Guido van Rossum2007-02-263-37/+35
* You can no longer catch non-BaseException objects; TypeError is raised if suchBrett Cannon2007-02-261-19/+23
* Whoops, fix build breakage. There were still a few uses of the bool type.Neal Norwitz2007-02-263-15/+11
* Merged revisions 53912-53951 via svnmerge fromThomas Wouters2007-02-262-173/+63
* Add raw_input() back, named input(). Revive the old unittests too.Guido van Rossum2007-02-261-0/+78
* Fix a refleak in the MAKE_FUNCTION opcode in ceval.c.Georg Brandl2007-02-261-0/+2
* Fix leak in the print function.Georg Brandl2007-02-261-3/+5
* Make bytes_repr return a string containing a b"" literal.Georg Brandl2007-02-241-1/+2
* Prevent regeneration.Thomas Wouters2007-02-231-2/+2
* Bytes literal.Thomas Wouters2007-02-234-12/+99
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-2/+11
* Checkin the regenerated Python-ast.c and fix test_optparse.Georg Brandl2007-02-111-1/+1
* Fix test_frozen.Guido van Rossum2007-02-091-8/+9
* Kill off softspace completely (except in formatter.py which seems to haveGuido van Rossum2007-02-093-30/+1
* * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.Georg Brandl2007-02-096-177/+2
* Essential changes for print function changes.Guido van Rossum2007-02-094-1013/+931
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-051-2/+32
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-013-7/+10
* Fix minor grammar typo.Brett Cannon2007-01-291-1/+1
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-1/+0