- 10 Jul, 2001 3 commits
-
-
Fred Drake authored
information about them, based on comments from Jack Jansen.
-
Guido van Rossum authored
fixed. Regrettably, this must be run manually -- somehow the I/O redirection of the regression test breaks the test. When run under the regression test, this raises ImportError with a warning to that effect. Bugfix candidate!
-
Guido van Rossum authored
Fix various serious problems: - The ThreadingTCPServer class and its derived classes were completely broken because the main thread would close the request before the handler thread had time to look at it. This was introduced by Ping's close_request() patch. The fix moves the close_request() calls to after the handler has run to completion in the BaseServer class and the ForkingMixIn class; when using the ThreadingMixIn, closing the request is the handler's responsibility. - The ForkingUDPServer class has always been been broken because the socket was closed in the child before calling the handler. I fixed this by simply not calling server_close() in the child at all. - I cannot get the UnixDatagramServer class to work at all. The recvfrom() call doesn't return a meaningful client address. I added a comment to this effect. Maybe it works on other Unix versions. - The __all__ variable was missing ThreadingMixIn and ForkingMixIn. - Bumped __version__ to "0.4". - Added a note about the test suite (to be checked in shortly).
-
- 09 Jul, 2001 6 commits
-
-
Tim Peters authored
return NULL in an error case was itself an error.
-
Fred Drake authored
of work, but mostly it needs time spent doing the work to make the generated XML useful.
-
Fred Drake authored
-
Thomas Wouters authored
The block/unblock thread macros are called 'Py_BLOCK_THREADS' and 'Py_UNBLOCK_THREADS', not 'Py_BEGIN_BLOCK_THREADS' and 'Py_BEGIN_UNBLOCK_THREADS'.
-
Thomas Wouters authored
on python-dev. The features will still vanish, however, just one release later.
-
Thomas Wouters authored
(if any.)
-
- 08 Jul, 2001 2 commits
-
-
Jack Jansen authored
Implemented minimal FSRef support, plus conversion between FSRefs, FSSpecs and pathnames where applicable. PyMac_GetFSSpec and PyMac_BuildFSSpec have moved to macfsmodule from macglue. These mods are untested on OSX.
-
Fredrik Lundh authored
-
- 07 Jul, 2001 1 commit
-
-
Fred Drake authored
Add support for the \ulink macro.
-
- 06 Jul, 2001 26 commits
-
-
Fred Drake authored
update announcements do not get bounces from trying to send mail to my laptop, which has an identity crisis due to constant relocation.
-
Fred Drake authored
-
Fred Drake authored
this supports a hyperlinked version of the grammar that can make tracking down details and definitions a little easier.
-
Fred Drake authored
installation prefix and exec_prefix for Windows.
-
Fred Drake authored
-
Fred Drake authored
do_cmd_verbatiminput(): Write out a text file containing the content of the input file with a .txt extension, and add a link to it at the bottom of the presentation. This easier retrieval of example source code for copy & paste use.
-
Fred Drake authored
but which came from their default stylesheet. Add styles for the new hyperlinked grammar productions.
-
Fred Drake authored
includes some minor new inline markup and markup to generate hyperlinked grammar productions. Adopt a "style guide" document -- this beats writing our own and means we'll have a chance at consistency, without having to make it all up ourselves.
-
Fred Drake authored
were generated by the use of the productionlist environment or the \verbatiminput macro.
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
powerful latex2esis.py.
-
Fred Drake authored
LaTeX and we have at least one occurance of that in the content, so this script needs to support it as well.
-
Fredrik Lundh authored
re.findall doesn't take a maxsplit argument
-
Barry Warsaw authored
-
Fred Drake authored
translation more difficult, as well as reading the English more difficult for non-native speakers.
-
Barry Warsaw authored
clobbered on checkin.
-
Guido van Rossum authored
found a bug here. Here's the deal: Class PyShell derives from class OutputWindow. Method PyShell.close() wants to invoke its parent method, but because PyShell long ago was inherited from class PyShellEditorWindow, it invokes PyShelEditorWindow.close(self). Now, class PyShellEditorWindow itself derives from class OutputWindow, and inherits the close() method from there without overriding it. Under the old rules, PyShellEditorWindow.close would return an unbound method restricted to the class that defined the implementation of close(), which was OutputWindow.close. Under the new rules, the unbound method is restricted to the class whose method was requested, that is PyShellEditorWindow, and this was correctly trapped as an error.
-
Fred Drake authored
translation more difficult, as well as reading the English more difficult for non-native speakers. Add an index entry for the Telnet protocol. Always refer to the protocol as Telnet instead of telnet.
-
Barry Warsaw authored
additional offset is only applied to continuation lines for block opening statements. (py-compute-indentation): Only add py-continuation-offset if py-statement-opens-block-p is true.
-
Fred Drake authored
translation more difficult, as well as reading the English more difficult for non-native speakers.
-
Tim Peters authored
Symptom: (1, 2, 3) <= (1, 2) returned 1. This was already fixed in CVS for tuples, but an isomorphic error was in the list richcompare code.
-
Fred Drake authored
translation more difficult, as well as reading the English more difficult for non-native speakers.
-
Fred Drake authored
name when filling in the internal data structures, otherwise we incorrectly raise a KeyError. This fixes SF bug #432369.
-
Fred Drake authored
the os.W*() functions used to interpret the return value. This fixes SF bug #429361.
-
Fred Drake authored
translation more difficult, as well as reading the English more difficult for non-native speakers.
-
- 05 Jul, 2001 2 commits
-
-
Tim Peters authored
weren't functional under Windows even if enabled.
-
Fred Drake authored
\platform statement. Also fix a minor style consistency nit in an example.
-