| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
docs changes are needed (only reference to winreg I could find
was in libwinreg.tex, which is documenting _winreg, and merely
mentions that a higher-level winreg module *may* appear someday;
that's still true).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
socket.py is used for all platforms, and it defines the additional
classes and alternate socket() function for Windows and BeOS systems.
The plat-*/socket.py files are no longer needed, since there is a
shared socket.py.
make_fqdn() is provided, but I decided to call it getfqdn() to be
consistent with the other names in the socket module. Since it is
really a "get" operation and does not create a new name, this is
the right name to give it.
Move the docstring here from the _socket module.
|
| |
|
| |
|
| |
|
|
|
|
| |
attempting a recursive import and causing a fatal error.
|
|
|
|
| |
OO wrapper for _winreg; blessed by Mark Hammond.
|
|
|
|
| |
remove "import string" -- use string methods instead!
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
methods. Using None causes problems if the destructor is called after
the __builtin__ module has already been destroyed (unfortunately, this
can happen!). I can't just delete the object because it is actually
tested for (if self._sock: ...). Setting it to 0 is a bit weird but
works.
|
| |
|
|
|