- 03 Mar, 2002 4 commits
-
-
Andrew MacIntyre authored
(see patch #514490, by Stefan Schwarzer)
-
Andrew MacIntyre authored
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 authored
Modules/ socketmodule.c EMX handles sockets like Posix, rather than use native APIs
-
Andrew MacIntyre authored
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 commits
-
-
Just van Rossum authored
-
Tim Peters authored
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 authored
dynamic theme changes
-
Tim Peters authored
instead of faking it by hand. It *is* a var object, and nothing but hysterical raisins to pretend it's an oddball.
-
Tim Peters authored
copy the sign too. Added a test to test_descr to ensure that it does. Bugfix candidate.
-
Tim Peters authored
to fix was almost certainly a bug in _PyLong_Copy (which I'll fix next).
-
- 01 Mar, 2002 10 commits
-
-
Barry Warsaw authored
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 authored
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 authored
Support GMP version >= 2. Bugfix candidate.
-
Michael W. Hudson authored
discussed on python-dev.
-
Martin v. Löwis authored
-
Neal Norwitz authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
- make array.array a type - add Py_UNICODE arrays - support +=, *=
-
Martin v. Löwis authored
-
- 28 Feb, 2002 11 commits
-
-
Jeremy Hylton authored
Noted by Jason Orendorff, SF #520768. Bug fix candidate for 2.1 & 2.2.
-
Guido van Rossum authored
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 authored
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 authored
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 authored
Use posixly correct sort args. Bugfix candidate.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
- 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
-
Andrew MacIntyre authored
Objects/ stringobject.c unicodeobject.c
-
Marc-André Lemburg authored
bug #521526.
-
Tim Peters authored
-
Tim Peters authored
-
- 27 Feb, 2002 1 commit
-
-
Michael W. Hudson authored
Doc/README is odd; it assigns some copyright to the PSF in 2000, when I didn't think it existed...
-
- 26 Feb, 2002 6 commits
-
-
Guido van Rossum authored
There were never tests for the fact that list() always returns a *new* list object, even when the argument is a list, while tuple() may return a reference to the argument when it is a tuple. Now there are.
-
Jack Jansen authored
-
Andrew MacIntyre authored
Python/ dynload_shlib.c // EMX port emulates dlopen() etc. for DL extensions import.c // changes to support 8.3 DLL name limit (VACPP+EMX) // and case sensitive import semantics importdl.h thread_os2.h
-
Andrew MacIntyre authored
Objects/ fileobject.c stringobject.c unicodeobject.c This commit doesn't include the cleanup patches for stringobject.c and unicodeobject.c which are shown separately in the patch manager. Those patches will be regenerated and applied in a subsequent commit, so as to preserve a fallback position (this commit to those files).
-
Andrew MacIntyre authored
Include/ osdefs.h // EMX promotes Un*x path separators pyport.h
-
Steven M. Gava authored
would appear to freeze for a few seconds on closing in some cases when running under X
-
- 25 Feb, 2002 2 commits
-
-
Guido van Rossum authored
Windows: apply normcase() as well as abspath(). (Note: this isn't needed to make IDLE work, but it's a good idea anyway.) Bugfix candidate -- both 2.2.1 and 2.1.3.
-
Guido van Rossum authored
missing call to self.canonic().
-