- 15 Ara, 2001 6 kayıt (commit)
-
-
Tim Peters yazdı
Dietmar Schwertberger. Bugfix candidate. """ RISCOS/Modules/getpath_riscos.c: Include trailing '\0' when using strncpy [copy strlen(...)+1 characters]. Lib/plat-riscos/riscospath.py: Use riscosmodule.expand for os.path.abspath. [fixes problems with site.py where abspath("<Python$Dir>") returned join(os.getcwd(), "<Python$Dir>") as e.g. "SCSI::SCSI4.$.<Python$Dir>" because "<Python$Dir>" wasn't recognised as an absolute path.] """
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Guido van Rossum yazdı
instead.
-
Guido van Rossum yazdı
%300s should be %.300s, twice.
-
Jack Jansen yazdı
Finally CW7 allows me to replace the continually-in-need-of-updating exports files with one 6-line anti-export-file. Yeah! (Thanks Alex, for reminding me:-)
-
- 14 Ara, 2001 25 kayıt (commit)
-
-
Tim Peters yazdı
-
Just van Rossum yazdı
python callback, and do RemoveEventHandler() upon deallocation.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Fred Drake yazdı
appropriately marked.
-
Jack Jansen yazdı
-
Fred Drake yazdı
This partially fixes SF bug #492619. Fix a typo & use the new notice environment instead of (ab)using the \note and \warning macros.
-
Jack Jansen yazdı
-
Fred Drake yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
skipped on Mac OS X. Not sure yet about test_locale.py: this may be due to my copy of Mac OS X (although it talks english fine enough).
-
Fred Drake yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
call self.close() just before raising SMTPServerDisconnected. This allows you to, e.g. reconnect after a server timeout. Merged from the 2.2c1 branch.
-
Barry Warsaw yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
they were represented by newlines in the document source. Partially fixes SF bug #493243.
-
Fred Drake yazdı
be on the <tr> element, not the <table> element. Partially fixes SF bug #493243.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Jeremy Hylton yazdı
Rev 1.20 introduced a call to getpeername() in the dispatcher constructor. This only works for a connected socket. Apparently earlier versions of the code worked with un-connected sockets, e.g. a listening socket. It's not clear that the code is supposed to accept these sockets, because it sets self.connected = 1 when passed a socket. But it's also not clear that it should be a fatal error to pass a listening socket. The solution, for now, is to put a try/except around the getpeername() call and continue if it fails. The self.addr attribute is used primarily (only?) to produce a nice repr for the object, so it hardly matters. If there is a real error on a connected socket, it's likely that subsequent calls will fail too.
-
Jack Jansen yazdı
Add default values for options in the class init routine, not in the convenience wrapper function: distutils uses the class directly. Fixes bug #492665.
-
Guido van Rossum yazdı
Fix for SF bug #492345. (I could've sworn I checked this in, but apparently I didn't!) This code: class Classic: pass class New(Classic): __metaclass__ = type attempts to create a new-style class with only classic bases -- but it doesn't work right. Attempts to fix it so it works caused problems elsewhere, so I'm now raising a TypeError in this case.
-
- 13 Ara, 2001 9 kayıt (commit)
-
-
Just van Rossum yazdı
- FindControlUnderMouse() returns an existing control, not a new one.
-
Jeremy Hylton yazdı
-
Fred Drake yazdı
tests of complex().
-
Jeremy Hylton yazdı
-
Fred Drake yazdı
and only if there is no second arg. This closes SF patch #479551.
-
Jeremy Hylton yazdı
Based on the patch from Danny Yoo. The fix is in exec_statement() in ceval.c. There are also changes to introduce use of PyCode_GetNumFree() in several places.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-