- 21 Agu, 2008 5 kayıt (commit)
-
-
Mark Dickinson yazdı
rewrite float.fromhex to only allow ASCII hex digits on all platforms. (Tests for this are already present, but the test_float failures on Solaris hadn't been noticed before.) Reviewed by Antoine Pitrou.
-
Mark Dickinson yazdı
change is aimed at diagnosing issue 3633 (test_float fails on Solaris). Reviewed by Benjamin Peterson
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
-
- 20 Agu, 2008 11 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Benjamin Peterson yazdı
-
Hirokazu Yamamoto yazdı
-
Hirokazu Yamamoto yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Amaury Forgeot d'Arc yazdı
- 19 Agu, 2008 13 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r65876 | benjamin.peterson | 2008-08-19 15:54:52 -0500 (Tue, 19 Aug 2008) | 1 line apply a fix I think will help Windows ........
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Py_TPFLAGS_DEFAULT when not building the core.
-
Benjamin Peterson yazdı
-
Thomas Heller yazdı
-
Benjamin Peterson yazdı
-
Thomas Heller yazdı
that are COM methods must have a boolean True value.
-
Benjamin Peterson yazdı
-
Jesse Noller yazdı
issue3352: clean up the multiprocessing API to remove many get_/set_ methods and convert them to properties. Update the docs and the examples included.
-
Benjamin Peterson yazdı
-
Thomas Heller yazdı
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r65853 | benjamin.peterson | 2008-08-19 11:09:09 -0500 (Tue, 19 Aug 2008) | 1 line apply a patch for #3131. this solves the problem for the moment, but we should do some refactoring to get display logic out of RefactoringTool ........ r65854 | benjamin.peterson | 2008-08-19 11:37:38 -0500 (Tue, 19 Aug 2008) | 1 line another quick fix to get lib2to3 to work ........
-
- 18 Agu, 2008 11 kayıt (commit)
-
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
they will still live in 3.0 but it can't hurt
-
Amaury Forgeot d'Arc yazdı
Be less strict when parsing these version numbers, they don't necessarily follow the python numbering scheme.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
This is new in 2.6 so now need to worry about backwards compatibility :)
-
Eric Smith yazdı
Optimization of str.format() for cases with str, unicode, int, long, and float arguments. This gives about 30% speed improvement for the simplest (but most common) cases. This patch skips the __format__ dispatch, and also avoids creating an object to hold the format_spec. Unfortunately there's a complication in 2.6 with int, long, and float because they always expect str format_specs. So in the unicode version of this optimization, just check for unicode objects. int, float, long, and str can be added later, if needed.
-