- 28 Feb, 2002 1 commit
-
-
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 6 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().
-
Guido van Rossum authored
-
Guido van Rossum authored
missing call to self.canonic().
-
Fred Drake authored
Reported by Steve Alexander.
-
Marc-André Lemburg authored
-
- 24 Feb, 2002 4 commits
-
-
Martin v. Löwis authored
Fixes #418173 and #219960. 2.2.1 candidate.
-
Martin v. Löwis authored
(pass non-null argument to pthread_create). 2.2.1 candidate.
-
Martin v. Löwis authored
2.2.1 candidate.
-
Andrew MacIntyre authored
Lib/ os.py os2emxpath.py // added - OS/2 EMX specific path manipulation routines popen2.py site.py Lib/test/ test_fcntl.py test_longexp.py
-
- 23 Feb, 2002 5 commits
-
-
Steven M. Gava authored
python Patch #520483: Make IDLE OutputWindow handle Unicode.
-
Martin v. Löwis authored
2.2.1 candidate.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Tim Peters authored
Bugfix candidate. + Updated dir() description to match actual 2.2 behavior. + Replaced the dir(sys) example with dir(struct), because the former was way out of date and is bound to change frequently, while the latter is stable. + Added a note cautioning that dir() is supplied primarily for convenience at an interactive prompt (hoping to discourage its use as the foundation of introspective code outside the core).
-
- 22 Feb, 2002 4 commits
-
-
Greg Ward authored
-
Fred Drake authored
-
Andrew MacIntyre authored
Lib/plat-os2emx/ IN.py SOCKET.py grp.py pwd.py // pwd module that can process real passwd files regen
-
Piers Lauder authored
-
- 20 Feb, 2002 2 commits
-
-
Thomas Heller authored
--install-script ... command line option to bdist_wininst) at the end of the installation and at the start of deinstallation. Output (stdout, stderr) of the script (if any) is displayed in the last screen at installation, or in a simple message box at deinstallation. sys.argv[1] for the script will contain '-install' at installation time or '-remove' at deinstallation time. The installation script runs in an environment (embedded by the bdist_wininst runtime) where an additional function is available as builtin: create_shortcut(path, description, filename, [arguments[, workdir[, iconpath, iconindex]]]) Recreated this file after source changes.
-
Fred Drake authored
This closes SF bug #520087.
-
- 19 Feb, 2002 3 commits
-
-
Tim Peters authored
run the test suite afterwards. Either that, or whether '__doc__' shows up is platform-dependent!
-
Neal Norwitz authored
-
Neal Norwitz authored
-
- 18 Feb, 2002 3 commits
-
-
Martin v. Löwis authored
fixes #504343. 2.2.1 candidate.
-
Steven M. Gava authored
-
Steven M. Gava authored
-
- 17 Feb, 2002 5 commits
-
-
Neil Schemenauer authored
things_to_do block for a few common opcodes that don't do any real work. Closes SF patch #512256.
-
Tim Peters authored
Reindenter.run(): copy over initial all-whitespace lines (if any, and after normalizing to remove trailing blanks and tabs). Bugfix candidate.
-
Andrew MacIntyre authored
PC/os2emx/ Makefile README.os2emx config.c dlfcn.c // libdl emulation code for loadable extensions dlfcn.h dllentry.c // DLL initialisation routine for Python DLL getpath.c pyconfig.h python23.def // Python DLL symbol export definitions pythonpm.c // console-less PM interpreter wrapper
-
Tim Peters authored
SSL support. test_socket.py passes again on Windows. Added an XXX about adding _ssl exports to the __all__ list (it doesn't appear to be doing anything about that now, but since I don't have SSL on this box I can't really tell).
-
Tim Peters authored
socketmodule.c. No code outside of the .c file references it, so it doesn't belong the .h file (at least not yet ...), and declaring it an imported symbol in the .h file can't be made to work on Windows (it's a cross-DLL symbol then) without substantial code rewriting. Also repaired the comment that goes along with the decl, to stop referring to names and functions that haven't existed for 7 years <wink>. socketmodule.c compiles cleanly on Windows again. The test_socket dies at once, though (later).
-