]> granicus.if.org Git - python/log
python
24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 09:59:10 +0000 (09:59 +0000)]
String method conversion.

24 years agoPatches for AIX. Checked by Benjamin Collar.
Marc-André Lemburg [Fri, 9 Feb 2001 09:59:06 +0000 (09:59 +0000)]
Patches for AIX. Checked by Benjamin Collar.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 09:48:45 +0000 (09:48 +0000)]
String method conversion.

24 years agoString method conversion. Added a trivial main to test it with.
Eric S. Raymond [Fri, 9 Feb 2001 09:44:47 +0000 (09:44 +0000)]
String method conversion.  Added a trivial main to test it with.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 09:39:08 +0000 (09:39 +0000)]
String method conversion.

24 years agoOops...that will teach me to hit ^C^C too fast. Test passed.
Eric S. Raymond [Fri, 9 Feb 2001 09:21:01 +0000 (09:21 +0000)]
Oops...that will teach me to hit ^C^C too fast.  Test passed.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 09:19:27 +0000 (09:19 +0000)]
String method conversion.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 09:10:35 +0000 (09:10 +0000)]
String method conversion.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 08:56:30 +0000 (08:56 +0000)]
String method conversion.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 08:40:40 +0000 (08:40 +0000)]
String method conversion.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 08:33:43 +0000 (08:33 +0000)]
String method conversion.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 08:25:29 +0000 (08:25 +0000)]
String method conversion.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 07:58:53 +0000 (07:58 +0000)]
String method conversion.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 07:49:30 +0000 (07:49 +0000)]
String method conversion.

24 years agoFixed a bug in the test jig.
Eric S. Raymond [Fri, 9 Feb 2001 07:40:17 +0000 (07:40 +0000)]
Fixed a bug in the test jig.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 07:10:12 +0000 (07:10 +0000)]
String method conversion.

24 years agoSF bug #131225: sys.winver is still '2.0' in python 2.1a2.
Tim Peters [Fri, 9 Feb 2001 07:02:22 +0000 (07:02 +0000)]
SF bug #131225: sys.winver is still '2.0' in python 2.1a2.
SF patch #103683: Alternative dll version resources.
Changes similar to the patch.  MarkH should review.
File version and Product version text strings now 2.1a2.
64-bit file and product version numbers are now
    PY_MAJOR_VERSION, PY_MINOR_VERSION, messy, PYTHON_API_VERSION
where
    messy = PY_MICRO_VERSION*1000 + PY_RELEASE_LEVEL*10 + PY_RELEASE_SERIAL
Updated company name to "Digital Creations 2".
Copyright now lists Guido; "C in a circle" symbol used instead of (C).
Comments added so this is less likely to get flubbed again, and
#if/#error guys added to trigger if the version number manipulations
above overflow.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 07:02:17 +0000 (07:02 +0000)]
String method conversion.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 06:56:56 +0000 (06:56 +0000)]
String method conversion.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 06:50:21 +0000 (06:50 +0000)]
String method conversion.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 05:40:38 +0000 (05:40 +0000)]
String method conversion.

24 years agoCorrection to test main.
Eric S. Raymond [Fri, 9 Feb 2001 05:38:46 +0000 (05:38 +0000)]
Correction to test main.

24 years agoCorrection after second code path test.
Eric S. Raymond [Fri, 9 Feb 2001 05:37:25 +0000 (05:37 +0000)]
Correction after second code path test.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 05:19:09 +0000 (05:19 +0000)]
String method conversion.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 05:07:04 +0000 (05:07 +0000)]
String method conversion.

24 years agoString method conversion.
Eric S. Raymond [Fri, 9 Feb 2001 04:52:11 +0000 (04:52 +0000)]
String method conversion.

24 years agoUpdate documentation for pyexpat (xml.parsers.expat), to reflect the new
Fred Drake [Thu, 8 Feb 2001 15:40:33 +0000 (15:40 +0000)]
Update documentation for pyexpat (xml.parsers.expat), to reflect the new
support for Expat 1.95.*.

24 years agoset_error(): Handle construction of pyexpat.error exceptions. They
Fred Drake [Thu, 8 Feb 2001 15:39:08 +0000 (15:39 +0000)]
set_error():  Handle construction of pyexpat.error exceptions.  They
              now carry a 'code' attribute that gives the Expat error
              number.

Added support for additional handlers for Expat 1.95.*, including
XmlDeclHandler, EntityDeclHandler, ElementDeclHandler, and
AttlistDeclHandler.  Associated constants are in the 'model'
sub-object.

Added two new attributes to the parser object: ordered_attributes and
specified_attributes.  These are used to control how attributes are
reported and which attributes are reported.

24 years agoReplaced by :Lib:cfmfile.py.
Jack Jansen [Thu, 8 Feb 2001 13:17:23 +0000 (13:17 +0000)]
Replaced by :Lib:cfmfile.py.

24 years agoa few more __all__ lists
Skip Montanaro [Wed, 7 Feb 2001 23:14:30 +0000 (23:14 +0000)]
a few more __all__ lists

24 years agotest for presence of __builtins__ in names before deleting it, enabling this
Skip Montanaro [Wed, 7 Feb 2001 22:46:55 +0000 (22:46 +0000)]
test for presence of __builtins__ in names before deleting it, enabling this
to work with Jython (ugh! I hate that name!).  This closes patch 103665.

24 years agoRemove the optional integer argument to SSL_write; now it will always send
Andrew M. Kuchling [Wed, 7 Feb 2001 20:41:17 +0000 (20:41 +0000)]
Remove the optional integer argument to SSL_write; now it will always send
    the entire string passed to it

24 years agoBeOS doesn't have a libm.a, either; noted by Donn Cave
Andrew M. Kuchling [Tue, 6 Feb 2001 23:37:23 +0000 (23:37 +0000)]
BeOS doesn't have a libm.a, either; noted by Donn Cave

24 years agoPatch #103636: Allow writing strings containing null bytes to an SSL socket
Andrew M. Kuchling [Tue, 6 Feb 2001 22:58:05 +0000 (22:58 +0000)]
Patch #103636: Allow writing strings containing null bytes to an SSL socket

24 years agoPatch #103523, to make mpz module compile with Cygwin
Andrew M. Kuchling [Tue, 6 Feb 2001 22:33:45 +0000 (22:33 +0000)]
Patch #103523, to make mpz module compile with Cygwin

24 years agoPart of patch #103544: fix detection of BSDDB on BSD systems
Andrew M. Kuchling [Tue, 6 Feb 2001 22:26:30 +0000 (22:26 +0000)]
Part of patch #103544: fix detection of BSDDB on BSD systems

24 years agoPatch #103578 ] _tkinter build fix for he current Debian unstable tcl/tk 8.3
Andrew M. Kuchling [Tue, 6 Feb 2001 22:15:27 +0000 (22:15 +0000)]
Patch #103578 ] _tkinter build fix for he current Debian unstable tcl/tk 8.3
    packages

24 years agoAdded DlgObj_WhichDialog, analoguous to WhichWindow, and use this to get at dialogs.
Jack Jansen [Tue, 6 Feb 2001 16:14:54 +0000 (16:14 +0000)]
Added DlgObj_WhichDialog, analoguous to WhichWindow, and use this to get at dialogs.

24 years agoQDFlushPortBuffer() has an optional region argument.
Jack Jansen [Tue, 6 Feb 2001 16:13:50 +0000 (16:13 +0000)]
QDFlushPortBuffer() has an optional region argument.

24 years agoInstall shared modules enabled by Setup* in $(DESTSHARED) not
Neil Schemenauer [Tue, 6 Feb 2001 14:50:27 +0000 (14:50 +0000)]
Install shared modules enabled by Setup* in $(DESTSHARED) not
$(DESTSHARED)/Modules.

24 years agoSupport older PYTHON_API_VERSIONs for backwards compatibility.
Martin v. Löwis [Tue, 6 Feb 2001 09:34:40 +0000 (09:34 +0000)]
Support older PYTHON_API_VERSIONs for backwards compatibility.

24 years agoAdd xml declaration into toxml testcase.
Martin v. Löwis [Tue, 6 Feb 2001 01:16:48 +0000 (01:16 +0000)]
Add xml declaration into toxml testcase.

24 years agoDo not allow empty qualifiedName in createDocument.
Martin v. Löwis [Tue, 6 Feb 2001 01:16:06 +0000 (01:16 +0000)]
Do not allow empty qualifiedName in createDocument.
Rearrange pulldom to create documents with root element.
Provide clear methods so that the ContentHandler releases its hold on the
document.

24 years agoadded several more __all__ lists
Skip Montanaro [Tue, 6 Feb 2001 01:07:02 +0000 (01:07 +0000)]
added several more __all__ lists

24 years agoAdd toprettyxml method into minidom, closes patch #103471.
Martin v. Löwis [Tue, 6 Feb 2001 00:14:08 +0000 (00:14 +0000)]
Add toprettyxml method into minidom, closes patch #103471.

24 years agoA couple of changes to make this more conformant. MvL and Uche agree.
Guido van Rossum [Mon, 5 Feb 2001 19:17:50 +0000 (19:17 +0000)]
A couple of changes to make this more conformant.  MvL and Uche agree.
This will make it incompatible with the version found in Python 2.0.
Does this need to be done to PyXML too?

Changes that might break existing code are marked with (!) below.

- Formatting nit: no spaces inside parentheses: foo( a ) -> foo(a).

- Break long lines.

- (!) Fix getAttribute() and getAttributeNS() to return "" instead of
  raising KeyError when the attribute is not found.

- (!) Fix getAttributeNodeNS() to return None instead of raising
  KeyError.  (Curiously, getAttributeNode() already did this.)

- Added hasAttributes(), which returns true iff the node has any
  attributes.  )This is DOM level 3.)

- (!) In createDocument(), if the qualified name is not empty,
  actually create and insert the first element with that name (this
  will become doc.documentElement).  MvL believes that it should be an
  error to specify an empty qualified name; I'm not going there today,
  since it would require making a matching change to pulldom.  Maybe
  MvL will do this.

- In Document.writexml(), insert an xml declaration at the top.  (This
  doesn't include the encoding since there's no way to specify the
  encoding.  If that's preferred, all writexml() methods should be
  fixed to support an optional encoding argument that they pass to
  each other -- and they should use it to encode all text they write,
  too.  Later.)

24 years agoDon't get fooled by an empty prefix with a valid namespaceURI -- in
Guido van Rossum [Mon, 5 Feb 2001 18:50:15 +0000 (18:50 +0000)]
Don't get fooled by an empty prefix with a valid namespaceURI -- in
this case, the code used to generate invalid tags and attribute names
with a leading colon, e.g. <:tag> or <tag :attr="foo">.

24 years agoPatch #103587: Fix typo that broke the install_data command; caught by
Andrew M. Kuchling [Mon, 5 Feb 2001 17:43:11 +0000 (17:43 +0000)]
Patch #103587: Fix typo that broke the install_data command; caught by
   Uche Ogbuji

24 years agoFixed UnboundLocalError for nested scopes
Jeremy Hylton [Mon, 5 Feb 2001 17:36:46 +0000 (17:36 +0000)]
Fixed UnboundLocalError for nested scopes

24 years agoFix test 9 (caught by ?!ng)
Jeremy Hylton [Mon, 5 Feb 2001 17:35:20 +0000 (17:35 +0000)]
Fix test 9 (caught by ?!ng)
Add tests for unbound locals (Nick Mathewson)

24 years agoSF patch 103596 by Nick Mathewson: rause UnboundLocalError for
Jeremy Hylton [Mon, 5 Feb 2001 17:23:16 +0000 (17:23 +0000)]
SF patch 103596 by Nick Mathewson: rause UnboundLocalError for
uninitialized free variables

24 years agoAlso recognize DragRef as a method-argument.
Jack Jansen [Mon, 5 Feb 2001 13:47:13 +0000 (13:47 +0000)]
Also recognize DragRef as a method-argument.

24 years agoWrote section on nested scopes, and moved it to the front
Andrew M. Kuchling [Mon, 5 Feb 2001 02:47:52 +0000 (02:47 +0000)]
Wrote section on nested scopes, and moved it to the front
Began a section on weak references
Various rewrites and paragraph refills
Added: non-recursive makefiles, repr() of strings now uses \n, raw socket I/O
Bumped version number

24 years agoFix binfmt_register documentation to always register the right magic.
Martin v. Löwis [Sun, 4 Feb 2001 22:37:56 +0000 (22:37 +0000)]
Fix binfmt_register documentation to always register the right magic.

24 years agoImprove diagnostic output when an external command returns a non-zero exit
Fred Drake [Sun, 4 Feb 2001 15:20:26 +0000 (15:20 +0000)]
Improve diagnostic output when an external command returns a non-zero exit
code, showing the transcript for that command.

This closes SF bug #129740.

24 years agoAnother _testXXX -> _testcapiXXX renaming.
Tim Peters [Sun, 4 Feb 2001 09:18:21 +0000 (09:18 +0000)]
Another _testXXX -> _testcapiXXX renaming.

24 years agoRenamed _testXXX to _testcapiXXX. Jack is my hero -- good call!
Tim Peters [Sun, 4 Feb 2001 03:09:53 +0000 (03:09 +0000)]
Renamed _testXXX to _testcapiXXX.  Jack is my hero -- good call!

24 years agoSuperseded by $(srcdir)/Makefile.pre.in.
Neil Schemenauer [Sat, 3 Feb 2001 17:18:21 +0000 (17:18 +0000)]
Superseded by $(srcdir)/Makefile.pre.in.

24 years agoTweak clean targets yet again.
Neil Schemenauer [Sat, 3 Feb 2001 17:16:29 +0000 (17:16 +0000)]
Tweak clean targets yet again.

24 years agoClarify the news item about "from M import X" if "M is not a real
Guido van Rossum [Sat, 3 Feb 2001 15:06:40 +0000 (15:06 +0000)]
Clarify the news item about "from M import X" if "M is not a real
module" after a complaint from Tim.

24 years agoFix markup typo in a {verbatim} environment (there should not be any!);
Fred Drake [Sat, 3 Feb 2001 14:35:38 +0000 (14:35 +0000)]
Fix markup typo in a {verbatim} environment (there should not be any!);
caught by Eric Raymond.

24 years agoDocument Node.isSameNode().
Fred Drake [Sat, 3 Feb 2001 01:20:01 +0000 (01:20 +0000)]
Document Node.isSameNode().

24 years agoMove the whrandom section back to the documented modules section; this
Fred Drake [Sat, 3 Feb 2001 01:17:41 +0000 (01:17 +0000)]
Move the whrandom section back to the documented modules section; this
gives people a chance to see the depracation notice.

24 years agoRevise the deprecation note for the whrandom module to be correct and a
Fred Drake [Sat, 3 Feb 2001 01:12:44 +0000 (01:12 +0000)]
Revise the deprecation note for the whrandom module to be correct and a
little more formal.

24 years agoRemove an now-false statement about there being only one type flag
Fred Drake [Sat, 3 Feb 2001 01:11:26 +0000 (01:11 +0000)]
Remove an now-false statement about there being only one type flag
defined.

24 years agoAccept Dialogs and Windows where Grafports are expected (such as in SetPort) and...
Jack Jansen [Fri, 2 Feb 2001 22:41:48 +0000 (22:41 +0000)]
Accept Dialogs and Windows where Grafports are expected (such as in SetPort) and do a MacOSX compatible cast. Bit of a hack, but good enough for now.

24 years agoOn MacOSX StackSpace() may lie because it doesn't know about the stack rlimit. For...
Jack Jansen [Fri, 2 Feb 2001 22:40:28 +0000 (22:40 +0000)]
On MacOSX StackSpace() may lie because it doesn't know about the stack rlimit. For now we set a hard limit of 256K (default rlimit is 512K).

24 years agoThis commit was manufactured by cvs2svn to create tag 'r21a2'. v2.1a2
cvs2svn [Fri, 2 Feb 2001 21:24:51 +0000 (21:24 +0000)]
This commit was manufactured by cvs2svn to create tag 'r21a2'.

24 years agoTeach Windows build and installer about new _symtable module/DLL.
Tim Peters [Fri, 2 Feb 2001 21:24:51 +0000 (21:24 +0000)]
Teach Windows build and installer about new _symtable module/DLL.

24 years agoRepair legit compiler warning.
Tim Peters [Fri, 2 Feb 2001 21:10:53 +0000 (21:10 +0000)]
Repair legit compiler warning.

24 years agobump the magic number; the compiler has changed since 2.1a1
Jeremy Hylton [Fri, 2 Feb 2001 20:13:24 +0000 (20:13 +0000)]
bump the magic number; the compiler has changed since 2.1a1

24 years agobump to 2.1a2
Jeremy Hylton [Fri, 2 Feb 2001 20:13:01 +0000 (20:13 +0000)]
bump to 2.1a2

24 years agothe usual
Jeremy Hylton [Fri, 2 Feb 2001 20:11:13 +0000 (20:11 +0000)]
the usual

24 years agomove "from Tkinter import *" to module level
Jeremy Hylton [Fri, 2 Feb 2001 20:07:46 +0000 (20:07 +0000)]
move "from Tkinter import *" to module level

24 years agoFix spelling errors.
Jeremy Hylton [Fri, 2 Feb 2001 20:06:28 +0000 (20:06 +0000)]
Fix spelling errors.
Add note about _symtable.
Add note that 'from ... import *' restriction may go away -- and move
the whole entry closer to the top, because it might bite people.

24 years agoFix symbol table pass to generation SyntaxError exceptions that
Jeremy Hylton [Fri, 2 Feb 2001 20:01:10 +0000 (20:01 +0000)]
Fix symbol table pass to generation SyntaxError exceptions that
include the filename and line number.

24 years agofix a couple last-minute bugs in the raw socket support
Jeremy Hylton [Fri, 2 Feb 2001 19:55:17 +0000 (19:55 +0000)]
fix a couple last-minute bugs in the raw socket support

24 years agoadd compile.h and symtable.h to list of header files
Jeremy Hylton [Fri, 2 Feb 2001 19:54:23 +0000 (19:54 +0000)]
add compile.h and symtable.h to list of header files

24 years agoAdded Node.isSameNode() support.
Fred Drake [Fri, 2 Feb 2001 19:40:19 +0000 (19:40 +0000)]
Added Node.isSameNode() support.

24 years agoOuch! I need a better test suite for this. ;-(
Fred Drake [Fri, 2 Feb 2001 19:28:35 +0000 (19:28 +0000)]
Ouch!  I need a better test suite for this.  ;-(

24 years agoSteve Majewski's patch #103495, MatchFilename() and find_module()
Barry Warsaw [Fri, 2 Feb 2001 19:12:16 +0000 (19:12 +0000)]
Steve Majewski's patch #103495, MatchFilename() and find_module()
patch for case-preserving HFS+ suport.  Untested except to verify that
it builds and doesn't break anything on Linux RH6.1.

24 years agoAdd minimal interface to symtable: _symtable module.
Jeremy Hylton [Fri, 2 Feb 2001 18:24:26 +0000 (18:24 +0000)]
Add minimal interface to symtable: _symtable module.

24 years agoMove a bunch of definitions that were internal to compile.c to
Jeremy Hylton [Fri, 2 Feb 2001 18:19:15 +0000 (18:19 +0000)]
Move a bunch of definitions that were internal to compile.c to
symtable.h, so that they can be used by external module.

Improve error handling in symtable_enter_scope(), which return an
error code that went unchecked by most callers. XXX The error handling
in symtable code is sloppy in general.

Modify symtable to record the line number that begins each scope.
This can help to identify which code block is being referred to when
multiple blocks are bound to the same name.

Add st_scopes dict that is used to preserve scope info when
PyNode_CompileSymtable() is called.  Otherwise, this information is
tossed as soon as it is no longer needed.

Add Py_SymtableString() to pythonrun; analogous to Py_CompileString().

24 years agoUse a type flag to determine the applicability of the tp_weaklistoffset
Fred Drake [Fri, 2 Feb 2001 18:17:30 +0000 (18:17 +0000)]
Use a type flag to determine the applicability of the tp_weaklistoffset
field.  This should avoid binary incompatibility problems with older modules
that have not been recompiled.

24 years agoUndo recent exclusion of test_fork1 and test_zlib. These tests don't
Jeremy Hylton [Fri, 2 Feb 2001 18:12:16 +0000 (18:12 +0000)]
Undo recent exclusion of test_fork1 and test_zlib.  These tests don't
trigger my arbitrary exlusion rule, which is: takes more than 10
seconds of wall clock time on my machine.  If these tests are going to
be skipped, then a boatload of slower tests should be skipped, too.

24 years agoDo not pass names of individual files to shutil.rmtree(); use os.unlink()
Fred Drake [Fri, 2 Feb 2001 15:48:00 +0000 (15:48 +0000)]
Do not pass names of individual files to shutil.rmtree(); use os.unlink()
for that.

24 years agoWeakDictionary.items(): Do not allow (key,ref) pairs to leak out for
Fred Drake [Fri, 2 Feb 2001 15:13:24 +0000 (15:13 +0000)]
WeakDictionary.items():  Do not allow (key,ref) pairs to leak out for
    dead references.

24 years agoWhitespace correction...
Marc-André Lemburg [Fri, 2 Feb 2001 12:12:44 +0000 (12:12 +0000)]
Whitespace correction...

24 years agoAdded new Python C API _test module to the build mechanism on Unix.
Marc-André Lemburg [Fri, 2 Feb 2001 12:07:22 +0000 (12:07 +0000)]
Added new Python C API _test module to the build mechanism on Unix.

24 years agoTeach the Windows installer about the _test module.
Tim Peters [Fri, 2 Feb 2001 06:33:04 +0000 (06:33 +0000)]
Teach the Windows installer about the _test module.

24 years agoPatch derived from Trent's 101162: a Python/C API testing framework.
Tim Peters [Fri, 2 Feb 2001 05:57:15 +0000 (05:57 +0000)]
Patch derived from Trent's 101162: a Python/C API testing framework.
STILL NEEDS UNIX BUILD CHANGES.

24 years agoAdjustments to the text of the UnixMailbox description. Added
Fred Drake [Fri, 2 Feb 2001 03:51:05 +0000 (03:51 +0000)]
Adjustments to the text of the UnixMailbox description.  Added
PortableUnixMailbox as a separate class as well (this also generates
the right index entry).

24 years agoadd info about Grant Edwards' raw packet support
Jeremy Hylton [Fri, 2 Feb 2001 03:29:24 +0000 (03:29 +0000)]
add info about Grant Edwards' raw packet support

24 years agoSF patch 101137 from Grant Edwards
Jeremy Hylton [Fri, 2 Feb 2001 03:23:09 +0000 (03:23 +0000)]
SF patch 101137 from Grant Edwards
Adds support for raw packets (AF_PACKET) under Linux.  I haven't
tested this code thoroughly; it compiles and the basic calls all work
without crashing.  Not sure what to actually do with raw sockets though.

Not sure what other platforms this might be useful for.

24 years agoAdded fork1, linuxaudiodev, sunaudiodev, and zlib to the tests skipped
Fred Drake [Fri, 2 Feb 2001 03:03:33 +0000 (03:03 +0000)]
Added fork1, linuxaudiodev, sunaudiodev, and zlib to the tests skipped
by the quicktest target.

24 years agoadd missing DECREF (thanks, Barry)
Jeremy Hylton [Fri, 2 Feb 2001 02:58:48 +0000 (02:58 +0000)]
add missing DECREF (thanks, Barry)

24 years agoThe socket constants have been moved to the socket module for a long time;
Fred Drake [Fri, 2 Feb 2001 02:51:21 +0000 (02:51 +0000)]
The socket constants have been moved to the socket module for a long time;
the standard library does not use the SOCKET module any more, and it is
not defined for all platforms (Windows, in particular).

24 years agoMove the whrandom entry to the "Obsolete Modules" appendix.
Fred Drake [Fri, 2 Feb 2001 02:45:08 +0000 (02:45 +0000)]
Move the whrandom entry to the "Obsolete Modules" appendix.

24 years agoMinor markup adjustments.
Fred Drake [Fri, 2 Feb 2001 02:43:18 +0000 (02:43 +0000)]
Minor markup adjustments.
Move some index entries next to what they are referring to for better
"targetting".

24 years agoMinor markup adjustments.
Fred Drake [Fri, 2 Feb 2001 02:42:31 +0000 (02:42 +0000)]
Minor markup adjustments.