Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revise the wrapper structure for the socket module: | Fred Drake | 2000-08-16 | 1 | -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. | ||||
* | In _fileobject, optimize read() a bit (it could be really slow), and | Guido van Rossum | 2000-02-02 | 1 | -14/+30 |
| | | | | remove "import string" -- use string methods instead! | ||||
* | Added table of WSA error codes. | Guido van Rossum | 1998-05-06 | 1 | -0/+19 |
| | |||||
* | Add connect_ex to list of methods. | Guido van Rossum | 1998-04-14 | 1 | -1/+1 |
| | |||||
* | Reindented with tabs only (seems fair to the Windows crowd). | Guido van Rossum | 1998-03-26 | 1 | -99/+99 |
| | |||||
* | Use ``0'' instead of ``None'' to reset the underlying object in close | Guido van Rossum | 1997-11-04 | 1 | -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 statements | Guido van Rossum | 1996-08-20 | 1 | -3/+0 |
| | |||||
* | socket wrapper module around _socket for all Window platforms | Guido van Rossum | 1996-06-26 | 1 | -0/+136 |