summaryrefslogtreecommitdiffstats
path: root/Lib/plat-win
Commit message (Collapse)AuthorAgeFilesLines
* Remove the winreg module from the project. I don't believe anyTim Peters2000-08-211-386/+0
| | | | | | | 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).
* Revise the wrapper structure for the socket module:Fred Drake2000-08-161-168/+0
| | | | | | | | | | | | | | | 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.
* Fix a type in the docstrings, and make the module Unicode aware.Mark Hammond2000-07-281-4/+8
|
* Added docstringsPaul Prescod2000-07-211-5/+71
|
* test(): Removed; regression test is in test.test_winreg2, not testreg.Fred Drake2000-07-011-2/+0
|
* Ooops! I didn't finish all the renaming needed here, so this wasFred Drake2000-06-301-36/+36
| | | | attempting a recursive import and causing a fatal error.
* Paul Prescod <paul@prescod.net>:Fred Drake2000-06-291-0/+318
| | | | OO wrapper for _winreg; blessed by Mark Hammond.
* In _fileobject, optimize read() a bit (it could be really slow), andGuido van Rossum2000-02-021-14/+30
| | | | remove "import string" -- use string methods instead!
* Added table of WSA error codes.Guido van Rossum1998-05-061-0/+19
|
* Add connect_ex to list of methods.Guido van Rossum1998-04-141-1/+1
|
* Reindented with tabs only (seems fair to the Windows crowd).Guido van Rossum1998-03-261-99/+99
|
* Use ``0'' instead of ``None'' to reset the underlying object in closeGuido van Rossum1997-11-041-2/+2
| | | | | | | | 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.
* Get rid of debug print statementsGuido van Rossum1996-08-201-3/+0
|
* socket wrapper module around _socket for all Window platformsGuido van Rossum1996-06-261-0/+136