- 02 Agu, 2006 6 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Ronald Oussoren yazdı
-
Tim Peters yazdı
writing the crc to file on the "PPC64 Debian trunk" buildbot when running test_tarfile. This is again a case where the native zlib crc is an unsigned 32-bit int, but the Python wrapper implicitly casts it to signed C long, so that "the sign bit looks different" on different platforms.
-
Neal Norwitz yazdı
Reported by Klocwork #36
-
Tim Peters yazdı
buildbot (& possibly other 64-bit boxes) during test_gzip. The native zlib crc32 function returns an unsigned 32-bit integer, which the Python wrapper implicitly casts to C long. Therefore the same crc can "look negative" on a 32-bit box but "look positive" on a 64-bit box. This patch papers over that platform difference when writing the crc to file. It may be better to change the Python wrapper, either to make the result "look positive" on all platforms (which means it may have to return a Python long at times on a 32-bit box), or to keep the sign the same across boxes. But that would be a visible change in what users see, while the current hack changes no visible behavior (well, apart from stopping the struct deprecation warning). Note that the module-level write32() function is no longer used.
-
Tim Peters yazdı
-
- 01 Agu, 2006 8 kayıt (commit)
-
-
Ronald Oussoren yazdı
directory. It also fixes a bug where PythonLauncher failed to launch scripts when the scriptname (or the path to the script) contains quotes.
-
Ronald Oussoren yazdı
on MacOS X actually works correctly in all cases.
-
Thomas Heller yazdı
-
Georg Brandl yazdı
KeyboardInterrupt.
-
Andrew M. Kuchling yazdı
Patch by Douglas Greiman. The test_run_abort() testcase produces a core file on Unix systems, even though the test is successful. This can be confusing or alarming to someone who runs 'make test' and then finds that the Python interpreter apparently crashed.
-
Thomas Heller yazdı
-
Thomas Heller yazdı
in the cast() function.
-
Andrew M. Kuchling yazdı
-
- 31 Tem, 2006 16 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
[Bug #1514540] Instead of putting the standard types in a section, put them in a chapter of their own. This means string methods will now show up in the ToC. (Should the types come before or after the functions+exceptions+constants chapter? I've put them after, for now.)
-
Georg Brandl yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
Is the explanation of the 'stacklevel' parameter clear? Please feel free to edit it. I don't have LaTeX installed on this machine, so haven't verified that the markup is correct. Will check tonight, or maybe the automatic doc build will tell me.
-
Andrew M. Kuchling yazdı
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
-
Tim Peters yazdı
warning on Windows. Afraid I can't detect a pattern to when the pack formats decide to use a signed or unsigned format code -- appears nearly arbitrary to my eyes. So I left all the pack formats alone and changed the special-case data values instead.
-
Tim Peters yazdı
warnings on Win32. Also added an XXX about the line: pos3 = self.fp.tell() `pos3` is never referenced, and I have no idea what the code intended to do instead.
-
Andrew McNamara yazdı
-
Tim Peters yazdı
-
- 30 Tem, 2006 10 kayıt (commit)
-
-
Georg Brandl yazdı
-
Neal Norwitz yazdı
and may need to be reverted if it causes problems.
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
George Yoshida yazdı
-
George Yoshida yazdı
-
Georg Brandl yazdı
-
Martin v. Löwis yazdı
Fixes #1439538 Will backport to 2.4 Also regenerate pyconfig.h.in.
-
Martin v. Löwis yazdı
Fixes #1257728.
-
Martin v. Löwis yazdı
no longer maintained separatedly.
-