- 28 Mar, 2008 16 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
allow compiling Python AST objects into code objects in compile().
-
Gregory P. Smith yazdı
Adds sqlite3.Connection.iterdump to allow dumping of databases.
-
Georg Brandl yazdı
-
Gregory P. Smith yazdı
The moved tests use a local server rather than going out to external servers. Accepts patch from issue2429. Contributed by Jerry Seutter & Michael Foord (fuzzyman) at PyCon 2008.
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
reliable, but I'm not convinced it is the right solution. We need to determine if this causes the test to hang on any platforms or do other bad things. Even if it gets the test to pass reliably, it might be that we want to fix this in socket. The socket returned from accept() is different on different platforms (inheriting attributes or not) and we might want to ensure that the attributes (at least blocking) is the same across all platforms.
-
Neal Norwitz yazdı
-
Martin v. Löwis yazdı
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r61899 | collin.winter | 2008-03-25 17:53:41 +0100 (Di, 25 Mär 2008) | 1 line Add a missing explicit fixer to test_all_fixers. ........ r61983 | collin.winter | 2008-03-28 03:19:46 +0100 (Fr, 28 Mär 2008) | 2 lines Fix http://bugs.python.org/issue2453: support empty excepts in fix_except. ........
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Neal Norwitz yazdı
Rather than sprinkle casts throughout the code, change Py_CHARMASK to always cast it's result to an unsigned char. This should ensure we do the right thing when accessing an array with the result.
-
Jeffrey Yasskin yazdı
-
Neal Norwitz yazdı
-
Jeffrey Yasskin yazdı
up after it was joined had a traceback pointing to that thread's (deleted) target attribute, while the test was trying to check that the target was destroyed. Big thanks to Antoine Pitrou for diagnosing the race and pointing out sys.exc_clear() to kill the exception early. This fixes issue 2496.
-
Amaury Forgeot d'Arc yazdı
-
- 27 Mar, 2008 16 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
"" "" => """", which is invalid code. Will backport
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Christian Heimes yazdı
The tokenize module doesn't understand __future__.unicode_literals yet
-
Christian Heimes yazdı
-
Eric Smith yazdı
and some string concatenations. Removed unneeded __future__ print_function import.
-
Christian Heimes yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
since char is signed on some platforms and unsigned on others.
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
(Also remove some #if 0 code that is already handled in _getbytevalue.)
-
Christian Heimes yazdı
-
Christian Heimes yazdı
-
Benjamin Peterson yazdı
-
- 26 Mar, 2008 8 kayıt (commit)
-
-
Christian Heimes yazdı
use basestring instead of str in Python 2.x
-
Amaury Forgeot d'Arc yazdı
-
Christian Heimes yazdı
-
Christian Heimes yazdı
-
Christian Heimes yazdı
-
Christian Heimes yazdı
The new PyParser_*Ex() functions are based on Neal's suggestion and initial patch. The new __future__ feature makes all '' and r'' unicode strings. b'' and br'' stay (byte) strings.
-
Mark Dickinson yazdı
-
Georg Brandl yazdı
-