- 27 Feb, 2006 17 commits
-
-
Thomas Wouters authored
-
Martin v. Löwis authored
-
Jeremy Hylton authored
-
Tim Peters authored
-
Neal Norwitz authored
-
Thomas Wouters authored
-
Martin v. Löwis authored
-
Neal Norwitz authored
-
Thomas Wouters authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Thomas Wouters authored
-
Martin v. Löwis authored
Cleanup Python-ast.c generation.
-
Martin v. Löwis authored
-
Anthony Baxter authored
-
Thomas Wouters authored
breaks the parser module, because it adds the if/else construct as well as two new grammar rules for backward compatibility. If no one else fixes parsermodule, I guess I'll go ahead and fix it later this week. The TeX code was checked with texcheck.py, but not rendered. There is actually a slight incompatibility: >>> (x for x in lambda:0) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: iteration over non-sequence changes into >>> (x for x in lambda: 0) File "<stdin>", line 1 (x for x in lambda: 0) ^ SyntaxError: invalid syntax Since there's no way the former version can be useful, it's probably a bugfix ;)
-
Martin v. Löwis authored
-
- 26 Feb, 2006 7 commits
-
-
Martin v. Löwis authored
-
Neal Norwitz authored
Implement change suggested by Jiwon Seo on python-dev. ['(' gen_for ')'] is redundant with test, so remove it.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
a tree of Python objects. Expose this through compile().
-
Brett Cannon authored
automatically removed. Also annotate what each line is meant to test.
-
Tim Peters authored
-
- 25 Feb, 2006 5 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
- The copy module now "copies" function objects (as atomic objects). - dict.__getitem__ now looks for a __missing__ hook before raising KeyError. - Added a new type, defaultdict, to the collections module. This uses the new __missing__ hook behavior added to dict (see above).
-
Neal Norwitz authored
-
Brett Cannon authored
-
Brett Cannon authored
Just symlink or copy python.vim to ~/.vim/syntax/ . Also included is a sample Python file with basic expressions to make sure they are highlighted. Also add a Vim directory in Misc to hold all Vim configuration files.
-
- 24 Feb, 2006 2 commits
-
-
Neal Norwitz authored
['(' gen_for ')'] is redundant with test, so remove it.
-
Neal Norwitz authored
-
- 23 Feb, 2006 3 commits
-
-
Jack Jansen authored
build for the current CPU.
-
Jack Jansen authored
MacOSX 10.4 readline, and don't build the readline module in that case.
-
Jack Jansen authored
-
- 22 Feb, 2006 4 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
- 21 Feb, 2006 2 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
-