summaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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
* Merged revisions 53304-53433,53435-53450 via svnmerge fromThomas Wouters2007-01-151-1/+1
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-146-29/+32
* Some more changes related to the new except syntax and semantics,Guido van Rossum2007-01-105-19/+11
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-102-4/+57
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-093-3/+13
* Commit __version__ change.Martin v. Löwis2007-01-061-1/+1
* Update the magic number now that signature annotations were added.Guido van Rossum2006-12-281-1/+2
* PEP 3107 - Function Annotations thanks to Tony LowndsNeal Norwitz2006-12-286-1422/+1927
* Remove PyFloat_AsReprString() and PyFloat_AsString() which should notNeal Norwitz2006-12-281-20/+6
* Patch #1601678: move intern() to sys.intern().Georg Brandl2006-12-192-26/+27
* Oops, re-add 'static' qualifier.Thomas Wouters2006-12-131-1/+1
* Regenerate frozen.c's manual marshal as directed, fixing test_frozen.Thomas Wouters2006-12-131-8/+9
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-1315-962/+1028
* Check "sep" and "end" for stringness in Print().Georg Brandl2006-11-301-1/+14
* Add built-in Print() function. This is PEP 3105 except for the name;Guido van Rossum2006-11-301-0/+55
* Make it compile with older compilers.Guido van Rossum2006-11-221-3/+3