- 19 Mar, 2008 9 kayıt (commit)
-
-
Martin v. Löwis yazdı
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r61598 | david.wolever | 2008-03-18 23:58:33 -0500 (Di, 18 Mär 2008) | 1 line Added fixer for zip, and refactored a bit of code in the process. Closing #2171. ........ r61599 | david.wolever | 2008-03-19 00:04:26 -0500 (Mi, 19 Mär 2008) | 3 lines Removed a bunch of duplicate code -- it's in util now. ........ r61601 | martin.v.loewis | 2008-03-19 00:21:12 -0500 (Mi, 19 Mär 2008) | 2 lines Fix whitespace. ........
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Gregory P. Smith yazdı
removing all use of signed struct values. test_zipfile and test_zipfile64 pass. no more warnings.
-
Eric Smith yazdı
-
David Wolever yazdı
-
Eric Smith yazdı
-
Gregory P. Smith yazdı
when compiled properly optimized and about the same speed otherwise.
-
Gregory P. Smith yazdı
Some people look for them in hashlib.
-
- 18 Mar, 2008 30 kayıt (commit)
-
-
Eric Smith yazdı
This work is substantially Anthony Baxter's, from issue 1633807. I just freshened it, made a few minor tweaks, and added the test cases. I also created issue 2412, which is to check for 2to3's behavior with the print function. I also added myself to ACKS.
-
Gregory P. Smith yazdı
Fix a buglet in binascii.crc32, the second optional argument could previously have a signedness mismatch with the C variable its going into.
-
Steven Bethard yazdı
Add py3k warnings for code and method inequality comparisons. This should resolve issue 2373. The codeobject.c and methodobject.c changes are both just backports of the Python 3 code.
-
Steven Bethard yazdı
-
Neal Norwitz yazdı
-
Steven Bethard yazdı
Fix test_atexit so that it still passes when -3 is supplied. (It was catching the warning messages on stdio from using the reload() function.)
-
Gregory P. Smith yazdı
uid and gid input to accept values >=2**31 as valid while still accepting negative numbers to pass -1 to chown for "no change". Fixes issue1747858. This should be backported to release25-maint.
-
Steven Bethard yazdı
_have_soundcard() is a bad check for winsound.Beep, since you can have a soundcard but have the beep driver disabled. This revision basically disables the beep tests by wrapping them in a try/except. The Right Way To Do It is to come up with a _have_enabled_beep_driver() and use that.
-
Neal Norwitz yazdı
-
Steven Bethard yazdı
Add py3k warnings for object, type, cell and dict comparisons. This should resolve issue2342 and partly resolve issue2373.
-
Sean Reifscheider yazdı
copy, now it is doing a os.rename() if it's on the same file-system.
-
Steven Bethard yazdı
Use test_support.unlink instead of os.unlink in tearDown(). (Seems to fix an occasional failure in Windows Vista.)
-
Brett Cannon yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Trent Nelson yazdı
The behaviour of winsound.Beep() seems to differ between different versions of Windows when there's either: a) no sound card entirely b) legacy beep driver has been disabled c) the legacy beep driver has been uninstalled Sometimes RuntimeErrors are raised, sometimes they're not. If _have_soundcard() returns False, don't expect winsound.Beep() to raise a RuntimeError, as this clearly isn't the case, as demonstrated by the various Win32 XP buildbots.
-
Neal Norwitz yazdı
-
Jeffrey Yasskin yazdı
their times.
-
Brett Cannon yazdı
-
Neal Norwitz yazdı
-
Jeffrey Yasskin yazdı
instead of every integer from 0 to 400. Exhaustive testing wastes time without providing enough more assurance that the code is correct.
-
Jeffrey Yasskin yazdı
still sleep at all to make it likely that all threads are active at the same time.
-
Jeffrey Yasskin yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
- 17 Mar, 2008 1 kayıt (commit)
-
-
Eric Smith yazdı
-