Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add 'sendall' to list of socket methods. | Guido van Rossum | 2001-10-29 | 1 | -1/+1 |
| | |||||
* | SF patch #474590 -- RISC OS support | Guido van Rossum | 2001-10-24 | 1 | -1/+1 |
| | |||||
* | Inspired by Greg Stein's proposed simplification of the _closesocket | Guido van Rossum | 2001-08-18 | 1 | -5/+1 |
| | | | | | class, I came up with an even simpler solution: raise the error in __getattr__(). | ||||
* | When the socket is closed, don't just assign 0 to self._sock. | Guido van Rossum | 2001-08-18 | 1 | -8/+18 |
| | | | | | This breaks software that excepts a socket.error but not an AttributeError. | ||||
* | Whitespace normalization. | Tim Peters | 2001-03-29 | 1 | -1/+1 |
| | |||||
* | Add a wrapper function for ssl() on Windows. Inspired by SF patch | Guido van Rossum | 2001-03-22 | 1 | -6/+11 |
| | | | | | | | # 409287, ssl fix when using _socketobject, by Robin Dunn. I took the opportunity to improve the way it deals with reload(socket) for the socket function as well. | ||||
* | add errorTab to __all__ on win* | Skip Montanaro | 2001-03-18 | 1 | -0/+1 |
| | | | | closes bug #406642 | ||||
* | RISCOS changes by dschwertberger. | Guido van Rossum | 2001-03-02 | 1 | -1/+2 |
| | |||||
* | bunch more __all__ lists | Skip Montanaro | 2001-02-15 | 1 | -0/+5 |
| | | | | | | also modified check_all function to suppress all warnings since they aren't relevant to what this test is doing (allows quiet checking of regsub, for instance) | ||||
* | Whitespace normalization. | Tim Peters | 2001-01-15 | 1 | -1/+1 |
| | |||||
* | Mention in the module's doc string that other functions of the socket API | Martin v. Löwis | 2000-09-30 | 1 | -1/+2 |
| | | | | appear as methods on socket objects. | ||||
* | Support sizehint in _fileobject.readlines, as documented. | Martin v. Löwis | 2000-09-19 | 1 | -1/+5 |
| | |||||
* | Before comparing os.uname() to BeOS check that os.uname actually exists:-) | Jack Jansen | 2000-09-15 | 1 | -1/+1 |
| | |||||
* | updated occurences of fqdn algorithm (closes patch #101197) | Peter Schneider-Kamp | 2000-08-16 | 1 | -1/+1 |
| | |||||
* | Revise the wrapper structure for the socket module: | Fred Drake | 2000-08-16 | 1 | -0/+237 |
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. |