- 12 Ock, 2001 8 kayıt (commit)
-
-
Jack Jansen yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
(since it is).
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
1) "from M import X" now works even if M is not a real module; it's basically a getattr() operation with AttributeError exceptions changed into ImportError. 2) "from M import *" now looks for M.__all__ to decide which names to import; if M.__all__ doesn't exist, it uses M.__dict__.keys() but filters out names starting with '_' as before. Whether or not __all__ exists, there's no restriction on the type of M.
-
Guido van Rossum yazdı
- Make error messages from issubclass() and isinstance() a bit more descriptive (Ping, modified by Guido) - Couple of tiny fixes to other docstrings (Ping) - Get rid of trailing whitespace (Guido)
-
Andrew M. Kuchling yazdı
a glibc, not a gcc, problem.
-
Tim Peters yazdı
Tested on Windows. Should be tested on Linux. Should also be tested on some platform without threads (I simulated that by making the "import thread" fail, but that's not the same as actually doing it!).
-
- 11 Ock, 2001 17 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Fred Drake yazdı
This mostly closes SF bug #128251.
-
Tim Peters yazdı
-
Martin v. Löwis yazdı
-
Fred Drake yazdı
reference.
-
Thomas Wouters yazdı
Noone but me cares, but Guido said to go ahead and fix it if it bothered me.
-
Andrew M. Kuchling yazdı
-
Guido van Rossum yazdı
-
Thomas Wouters yazdı
xreadlines inserted themselves inbetween the two) and clarify that the normal socket module should be commented out. (Someone also suggested the latter on c.l.py some time ago, I forget who, sorry.)
-
Martin v. Löwis yazdı
-
Moshe Zadka yazdı
* x wasn't initialized to NULL * Did not DECREF result from displayhook function
-
Eric S. Raymond yazdı
-
Greg Stein yazdı
Submitted by: Mark Favas <m.favas@per.dem.csiro.au>
-
Moshe Zadka yazdı
This closes the PEP, and patch 103170
-
Eric S. Raymond yazdı
support, based on my fetchmail experience.
-
- 10 Ock, 2001 15 kayıt (commit)
-
-
Charles G. Waldman yazdı
#127699.
-
Guido van Rossum yazdı
source. Uesful for both GnuStep and for OSXS/OSX/Darwin. (Note: I changed $(CCC) to $(CXX) since that's now the name of the C++ compiler. Please test!
-
Guido van Rossum yazdı
[including support for modules w/Objective-C].
-
Guido van Rossum yazdı
Cygwin Python DLL and Shared Extension Patch). Add module.dll as a valid extension. jlt63 writes: Note that his change essentially backs out the fix for bug #115973. Should ".pyd" be retained instead for posterity?
-
Guido van Rossum yazdı
Extension Patch. These are the changes to the Modules Makefile and makesetup script for Cygwin.
-
Guido van Rossum yazdı
Extension Patch. Note: this could use some testing on NeXT, DG/UX, or BeOS, because of the changes in the Makefile regarding $(LDLIBRARY).
-
Guido van Rossum yazdı
under CYGWIN as shared libraries (DLLs).
-
Guido van Rossum yazdı
Note: I've reordered acconfig.h and config.h.in to obtain alphabetical order (modulo case and leading _).
-
Guido van Rossum yazdı
I've skipped all bugfixes, Unicode, distutils changes. But this should be a start!
-
Eric S. Raymond yazdı
additions to library docs.#
-
Guido van Rossum yazdı
with spaces in filename. I changed the module to use string methods instead of the string module. Also, instead of stripping the last character of the filename (assuming this is the linefeed), I strip trailing whitespace (assuming creating files with trailing whitespace in their name cannot possibly be a wise idea). (Note that I believe that /F's "workaround for broken uuencoders" is no longer needed since the recent fix to binascii.c, but I'll leave it in since it appears pretty harmless.)
-
Guido van Rossum yazdı
curses and readline (for Linux, at least). These are done as shared libraries by default, and so is bsddb -- that seems to make the most sense.
-
Guido van Rossum yazdı
and Py_Finalize(). It seems to dump core right now...
-
Guido van Rossum yazdı
since! :-( ).
-
Marc-André Lemburg yazdı
codec to test all charmap codec features. As side-effect of moving the test codec into a new module, the encodings package codec import mechanism is checked as well.
-