- 23 Eki, 2005 8 kayıt (commit)
-
-
Neil Schemenauer yazdı
-
Marc-André Lemburg yazdı
-
Mark Hammond yazdı
-
Mark Hammond yazdı
-
Raymond Hettinger yazdı
-
Neil Schemenauer yazdı
historically been looked up using LOAD_NAME, not LOAD_GLOBAL. looked up by LOAD_NAME, not
-
Neil Schemenauer yazdı
part. Fixes one bug from #1333982.
-
Neil Schemenauer yazdı
-
- 22 Eki, 2005 1 kayıt (commit)
-
-
Neal Norwitz yazdı
According to Jeremy, the comment only made sense when the yield was disallowed. Now it's testing that the yield is allowed, so it's not bad and the outer finally is irrelevant.
-
- 21 Eki, 2005 25 kayıt (commit)
-
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
-
Jeremy Hylton yazdı
Remove duplicate declarations from compile.h
-
Marc-André Lemburg yazdı
-
Marc-André Lemburg yazdı
a much faster codec implementation.
-
Marc-André Lemburg yazdı
available at ftp.unicode.org.
-
Marc-André Lemburg yazdı
mapping tables available at ftp.unicode.org. These new codecs include and use character decoding tables which speeds up decoding by a few factors.
-
Marc-André Lemburg yazdı
list all installed codecs.
-
Marc-André Lemburg yazdı
Added new support for decoding tables. Cleaned up the implementation a bit.
-
Armin Rigo yazdı
-
Michael W. Hudson yazdı
[ 1327110 ] wrong TypeError traceback in generator expressions by removing the code that can stomp on the users' TypeError raised by the iterable argument to ''.join() -- PySequence_Fast (now?) gives a perfectly reasonable message itself. Also, a couple of tests.
-
Michael W. Hudson yazdı
bump MAGIC.
-
Georg Brandl yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
foo(a = i for i in range(10)) This should have generated a SyntaxError. Fix the Grammar so it raises a SyntaxError and test it.
-
Neal Norwitz yazdı
Incorrect code was generated for: foo(a = i for i in range(10)) This should have generated a SyntaxError. Fix the Grammar so it raises a SyntaxError and test it. I'm uncertain whether this should be backported. It makes something that was Syntactically valid invalid. However, the code would either be completely broken or do the wrong thing.
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
INT_MIN is used in Python/compile.c, but it was also used in Objects/abstract.c Python/getargs.c. If we need it for compile.c, we can get it from the same place as the other files.
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
- 20 Eki, 2005 6 kayıt (commit)
-
-
Jeremy Hylton yazdı
This change implements a new bytecode compiler, based on a transformation of the parse tree to an abstract syntax defined in Parser/Python.asdl. The compiler implementation is not complete, but it is in stable enough shape to run the entire test suite excepting two disabled tests.
-
Marc-André Lemburg yazdı
type lookups: whitespace and linebreak. These lookup tables are from the Python 1.6 version with the addition of the 205F code point which was added as whitespace code point to Unicode since then.
-
Fred Drake yazdı
-
Jeremy Hylton yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
Problem: if two files are assigned the same inode number by the filesystem, the second one will be added as a hardlink to the first, which means that the content will be lost. The patched code checks if the file's st_nlink is greater 1. So only for files that actually have several links pointing to them hardlinks will be created, which is what GNU tar does. Will backport.
-