- 05 Mar, 2002 6 kayıt (commit)
-
-
Martin v. Löwis yazdı
as well.
-
Michael W. Hudson yazdı
[ 496873 ] structseqs unpicklable by adding a __reduce__ method to structseqs. Will also commit this to the 2.2.1 branch momentarily.
-
Fred Drake yazdı
recent versions of LaTeX2e but not support in LaTeX2HTML.
-
Fred Drake yazdı
Remove whitespace from the middle of an inline RE example; it was OK for the typeset formats, but LaTeX2HTML is more touchy about this.
-
Steven M. Gava yazdı
-
Steven M. Gava yazdı
-
- 04 Mar, 2002 3 kayıt (commit)
-
-
Skip Montanaro yazdı
-
Just van Rossum yazdı
-
Martin v. Löwis yazdı
-
- 03 Mar, 2002 8 kayıt (commit)
-
-
Tim Peters yazdı
over SEP, ALTSEP and MAXPATHLEN. Patched up posixmodule.c for MSVC, but unsure what the story is now on other non-Unixish platforms -- the preprocessor maze has no exit <wink>.
-
Barry Warsaw yazdı
2.2.1 candidate (but not terribly important).
-
Martin v. Löwis yazdı
- recognize "SyntaxError"s by the print_file_and_line attribute. - add the syntaxerror attributes to all exceptions in compile.c. Fixes #221791
-
Neal Norwitz yazdı
when no arguments are passed
-
Andrew MacIntyre yazdı
(see patch #514490, by Stefan Schwarzer)
-
Andrew MacIntyre yazdı
Modules/ posixmodule.c - use SEP,ALTSEP #defines instead of hard coded path separator chars - use EMX specific variants of chdir2(),getcwd() that support drive letters - OS/2+EMX spawnv(),spawnve() support - EMX specific popen[234]() derived from Win32 popen[234]() code
-
Andrew MacIntyre yazdı
Modules/ socketmodule.c EMX handles sockets like Posix, rather than use native APIs
-
Andrew MacIntyre yazdı
Modules/ _hotshot.c dbmmodule.c fcntlmodule.c main.c pwdmodule.c readline.c selectmodule.c signalmodule.c termios.c timemodule.c unicodedata.c
-
- 02 Mar, 2002 6 kayıt (commit)
-
-
Just van Rossum yazdı
-
Tim Peters yazdı
platform realloc(p, 0) returns NULL, so MALLOC_ZERO_RETURNS_NULL can be correctly undefined yet realloc(p, 0) can return NULL anyway. Prevent realloc(p, 0) doing free(p) and returning NULL via a different hack. Would probably be better to get rid of MALLOC_ZERO_RETURNS_NULL entirely. Bugfix candidate.
-
Steven M. Gava yazdı
dynamic theme changes
-
Tim Peters yazdı
instead of faking it by hand. It *is* a var object, and nothing but hysterical raisins to pretend it's an oddball.
-
Tim Peters yazdı
copy the sign too. Added a test to test_descr to ensure that it does. Bugfix candidate.
-
Tim Peters yazdı
to fix was almost certainly a bug in _PyLong_Copy (which I'll fix next).
-
- 01 Mar, 2002 10 kayıt (commit)
-
-
Barry Warsaw yazdı
section use this class instead of UnixMailbox as per the comments in the latter's class. Bug fix candidate for 2.2.1.
-
Guido van Rossum yazdı
Due to the bizarre definition of _PyLong_Copy(), creating an instance of a subclass of long with a negative value could cause core dumps later on. Unfortunately it looks like the behavior of _PyLong_Copy() is quite intentional, so the fix is more work than feels comfortable. This fix is almost, but not quite, the code that Naofumi Honda added; in addition, I added a test case.
-
Guido van Rossum yazdı
Support GMP version >= 2. Bugfix candidate.
-
Michael W. Hudson yazdı
discussed on python-dev.
-
Martin v. Löwis yazdı
-
Neal Norwitz yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
- make array.array a type - add Py_UNICODE arrays - support +=, *=
-
Martin v. Löwis yazdı
-
- 28 Şub, 2002 7 kayıt (commit)
-
-
Jeremy Hylton yazdı
Noted by Jason Orendorff, SF #520768. Bug fix candidate for 2.1 & 2.2.
-
Guido van Rossum yazdı
rexec. When using a restricted environment, imports of copy will fail with an AttributeError when trying to access types.CodeType. Bugfix candidate (all the way back to 1.5.3, but at least 2.1.3 and 2.2.1).
-
Tim Peters yazdı
A file-static "threads" dict mapped thread IDs to Windows handles, but was never referenced, and entries never got removed. This gets rid of the YAGNI-dict entirely. Bugfix candidate.
-
Tim Peters yazdı
alignment gimmick. David Abrahams notes that the standard "long double" actually requires stricter alignment than "double" on some Tru64 box. On my box and yours <wink>, it's the same, so no harm done on most boxes.
-
Guido van Rossum yazdı
Use posixly correct sort args. Bugfix candidate.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
- Use substring search, not re search for user-agent and paths. - Consider * entry last. Unquote, then requote URLs. - Treat empty Disallow as "allow everything". Add test cases. Fixes #523041
-