- 05 Kas, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 24 Agu, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
a dict instead. (Alas, using a Set would be slower instead of faster.)
-
- 23 May, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 15 May, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
Closes patch 556161.
-
- 01 Nis, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
I left the email pkg alone; I'm not sure how Barry would like to handle that.
-
- 26 Mar, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 30 Agu, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
Consequences for Jython still unknown (but raised on Jython-Dev).
-
- 08 Agu, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 20 Tem, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 15 Tem, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
the yield statement. I figure we have to have this in before I can release 2.2a1 on Wednesday. Note: test_generators is currently broken, I'm counting on Tim to fix this.
-
- 29 Haz, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
committed. tokenize.py: I like these changes, and have tested them extensively without even realizing it, so I just updated the docstring and the docs. tabnanny.py: Also liked this, but did a little code fiddling. I should really rewrite this to *exploit* generators, but that's near the bottom of my effort/benefit scale so doubt I'll get to it anytime soon (it would be most useful as a non-trivial example of ideal use of generators; but test_generators.py has already grown plenty of food-for-thought examples). inspect.py: I'm sure Ping intended for this to continue running even under 1.5.2, so I reverted this to the last pre-gen-branch version. The "bugfix" I checked in in-between was actually repairing a bug *introduced* by the conversion to generators, so it's OK that the reverted version doesn't reflect that checkin.
-
- 18 Haz, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
Bugfix candidate in inspect.py: it was referencing "self" outside of a method.
-
- 23 Mar, 2001 1 kayıt (commit)
-
-
Ka-Ping Yee yazdı
-
- 01 Mar, 2001 3 kayıt (commit)
-
-
Ka-Ping Yee yazdı
-
Ka-Ping Yee yazdı
-
Skip Montanaro yazdı
giving it a slight facelift
-
- 09 Şub, 2001 1 kayıt (commit)
-
-
Eric S. Raymond yazdı
-
- 15 Ock, 2001 2 kayıt (commit)
-
-
Ka-Ping Yee yazdı
-
Tim Peters yazdı
-
- 07 Eki, 2000 1 kayıt (commit)
-
-
Tim Peters yazdı
tokenize.py has always used naive regexps for matching string literals, and that appears to trigger the sre recursion limit on Skip's platform (he has very long single-line string literals). Replaced all of tokenize.py's string regexps with the "unrolled" forms used in IDLE, where they're known to handle even absurd (multi-megabyte!) string literals without trouble. See Friedl's book for explanation (at heart, the naive regexps create a backtracking choice point for each character in the literal, while the unrolled forms create none).
-
- 24 Agu, 2000 1 kayıt (commit)
-
-
Thomas Wouters yazdı
-
- 17 Agu, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 03 Nis, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
(a newline that the grammar ignores).
-
- 27 Eki, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
for r"..." raw strings. (And R"..." string support added by Guido.)
-
- 03 Haz, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 09 Nis, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
#backslashes, and other stuff I don't know.
-
- 08 Nis, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
# Ignore now accepts \f as whitespace. Operator now includes '**'. # Ignore and Special now accept \n or \r\n at the end of a line. # Imagnumber is new. Expfloat is corrected to reject '0e4'.
-
- 10 Mar, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 07 Mar, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 11 Kas, 1993 1 kayıt (commit)
-
-
Guido van Rossum yazdı
* test_grammar.py, testall.out: added test for funny things in string literals * token.py, symbol.py: definitions used with built-in parser module. * tokenize.py: added double-quote recognition
-
- 16 Mar, 1992 1 kayıt (commit)
-
-
Guido van Rossum yazdı
so it will correctly recognize floats. Fix the test program so it works again.
-
- 01 Ock, 1992 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-