- 23 Kas, 2007 11 kayıt (commit)
-
-
Facundo Batista yazdı
-
Facundo Batista yazdı
number: now it does not store the mantissa as a tuple of numbers, but as a string. This avoids a lot of conversions, and achieves a speedup of 40%. The API remains intact. Thanks Mark Dickinson.
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Andrew M. Kuchling yazdı
-
Christian Heimes yazdı
And yet another fix for the patch. Paul Moore has send me a note that I've missed a declaration. The additional code has moved the declaration in the middle of the block.
-
Christian Heimes yazdı
-
Christian Heimes yazdı
Backquotes still don't report the correct file. The AST nodes only contain the line number but not the file name.
-
Christian Heimes yazdı
The patches are adding deprecation warnings for back ticks and <>
-
Christian Heimes yazdı
-
Brett Cannon yazdı
-
- 22 Kas, 2007 2 kayıt (commit)
-
-
Christian Heimes yazdı
I've finished the last task for the PCbuild9 directory today. I don't think there is much left to do. Now you can all play around with the shiny new VS 2008 and try the PGO builds. I was able to get a speed improvement of about 10% on py3k. Have fun! :)
-
Guido van Rossum yazdı
With some changes of my own thrown in (e.g. backport of r58107).
-
- 21 Kas, 2007 7 kayıt (commit)
-
-
Christian Heimes yazdı
The Windows installer and some Linux distros are using compileall to compile all py files in the Lib/ directory. However no test exists to check if all py files can be compiled. I figured out that make testall is the easiest way to test compileall.
-
Amaury Forgeot d'Arc yazdı
-
Christian Heimes yazdı
Thanks for the reminder, Brett
-
Brett Cannon yazdı
-
Brett Cannon yazdı
newlines; it doesn't. To rectify this the string returned replaces all instances of os.linesep with '\n' to fake universal newline support. Backport candidate.
-
Christian Heimes yazdı
-
Brett Cannon yazdı
-
- 20 Kas, 2007 5 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
Solves issue1460. Might not be a backport candidate: a new API function was added, and some code may rely on details in utf-7.py.
-
Nick Coghlan yazdı
-
Christian Heimes yazdı
-
Martin v. Löwis yazdı
-
Christian Heimes yazdı
-
- 19 Kas, 2007 7 kayıt (commit)
-
-
Guido van Rossum yazdı
to /private/tmp. Adding a call to os.path.realpath() to temp_dir() fixed it.
-
Guido van Rossum yazdı
-
Facundo Batista yazdı
-
Nick Coghlan yazdı
-
Walter Dörwald yazdı
calling codecs.utf_8_decode() with final==True, which falled with incomplete byte sequences. Fix and test by James G. Sack.
-
Walter Dörwald yazdı
-
Neal Norwitz yazdı
-
- 18 Kas, 2007 1 kayıt (commit)
-
-
Nick Coghlan yazdı
-
- 17 Kas, 2007 2 kayıt (commit)
-
-
Brett Cannon yazdı
for them. Closes issue #1431. Thanks Giambattista Bloisi for the help.
-
Raymond Hettinger yazdı
-
- 16 Kas, 2007 4 kayıt (commit)
-
-
Facundo Batista yazdı
-
Facundo Batista yazdı
cycle before the tests...). Sorry.
-
Facundo Batista yazdı
as usual with slicing (both with str and unicode strings). This fixes issue 1259. For str only the stringobject.c file was modified. But for unicode, I needed to repeat in the four functions a lot of code, so created a new function that does part of the job for them (and placed it in find.h, following a suggestion of Barry). Also added tests for this behaviour.
-
Guido van Rossum yazdı
Currently on Windows set_error() make use of a large array which maps socket error numbers to error messages. This patch removes that array and just lets PyErr_SetExcFromWindowsErr() generate the message by using the Win32 function FormatMessage().
-
- 15 Kas, 2007 1 kayıt (commit)
-
-
Bill Janssen yazdı
-