summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-278-105/+363
* Patch #1550786: ellipsis literal.Georg Brandl2006-09-065-106/+106
* Patch #1550800: make exec a function.Georg Brandl2006-09-067-1047/+873
* Fix set literals not being visited in symtable creation.Georg Brandl2006-08-282-1/+4
* SF patch 1547796 by Georg Brandl -- set literals.Guido van Rossum2006-08-286-32/+125
* Part of SF patch #1513870 (the still relevant part) -- add reduce() toGuido van Rossum2006-08-261-1/+1
* SF patch 1546297 (with some tweaks):Guido van Rossum2006-08-251-15/+3
* Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up theBrett Cannon2006-08-256-56/+2
* Remove support for backticks from the grammar and compiler.Brett Cannon2006-08-253-107/+85
* Make built-in zip() equal to itertools.izip().Guido van Rossum2006-08-241-102/+18
* Killed the <> operator. You must now use !=.Guido van Rossum2006-08-242-105/+103
* Make it compile with C89.Guido van Rossum2006-08-241-1/+2
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-12/+16
* Check for exceptions set by PyDict_GetItem().Jeremy Hylton2006-08-231-0/+2
* Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M.Guido van Rossum2006-08-221-75/+0
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-2110-638/+693
* Get rid of most of the rest of coerce (slot is still there for now).Neal Norwitz2006-08-211-25/+0
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-172-13/+6
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-1123-210/+802
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-272-7/+3
* Merge the rest of the trunk.Thomas Wouters2006-06-086-38/+94
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-087-31/+55
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-2716-2199/+407
* Here is a bytes type. It's very minimal but it's a start.Guido van Rossum2006-04-221-0/+1
* Commit regenerated Python-ast.c.Thomas Wouters2006-04-211-1/+1
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-2126-663/+907
* Merge part of the trunk changes into the p3yk branch. This merges from 43030Thomas Wouters2006-04-211-0/+50
* Fix (and add test for) missing check for BaseException subclasses in the CThomas Wouters2006-04-201-0/+9
* INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).Neal Norwitz2006-03-171-1/+0
* _Py_QnewFlag and INPLACE_DIVIDE are not necessary any longerNeal Norwitz2006-03-172-17/+0
* Remove apply()Neal Norwitz2006-03-171-45/+0
* Whoops, input *and* raw_input are slated for removal, and now both are gone.Neal Norwitz2006-03-171-86/+0
* raw_input() -> input(). old input behavior is history (and test_builtin pass...Neal Norwitz2006-03-171-110/+72
* Remove sys.exc_type, sys.exc_value, sys.exc_tracebackNeal Norwitz2006-03-171-4/+0