Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Whitespace normalization. | Tim Peters | 2002-11-09 | 1 | -5/+5 |
| | |||||
* | Patch #625823: Add symbolic constants for more commands. | Martin v. Löwis | 2002-11-04 | 1 | -2/+13 |
| | |||||
* | Patch #630829: Don't block on IAC, process suboptions. | Martin v. Löwis | 2002-11-04 | 1 | -31/+82 |
| | |||||
* | Replaced boolean tests with is None. | Raymond Hettinger | 2002-06-02 | 1 | -1/+1 |
| | |||||
* | SF 554073. Fix typo in error reporting of unrecognized character | Guido van Rossum | 2002-05-13 | 1 | -1/+1 |
| | | | | following IAC. Bugfix candidate if anyone cares. | ||||
* | The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715. | Martin v. Löwis | 2002-02-16 | 1 | -3/+3 |
| | | | | | Replaces calls to socket.send() (which isn't guaranteed to send all data) with the new socket.sendall() method. | ||||
* | Only close sockets if they have been created. Reported by Blake Winton. | Martin v. Löwis | 2001-10-07 | 1 | -1/+2 |
| | |||||
* | Patch #416079: fix the debug string output when receiving telnet commands. | Martin v. Löwis | 2001-09-06 | 1 | -5/+82 |
| | | | | | | added all the telnet options known to arpa/telnet.h added all the options registered with IANA as of today added the possibility for the user to have it's own option negotiation callback | ||||
* | Initialize msg to avoid unbound locals. | Martin v. Löwis | 2001-07-31 | 1 | -0/+1 |
| | |||||
* | Untabify IPv6 changes. | Martin v. Löwis | 2001-07-26 | 1 | -11/+11 |
| | |||||
* | Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients. | Martin v. Löwis | 2001-07-24 | 1 | -2/+12 |
| | |||||
* | final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be | Skip Montanaro | 2001-03-01 | 1 | -0/+2 |
| | | | | giving it a slight facelift | ||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -4/+3 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2001-01-15 | 1 | -3/+3 |
| | |||||
* | Caolan McNamara: | Guido van Rossum | 2000-05-02 | 1 | -0/+1 |
| | | | | | | | telnetlib is unable to connect to a few telnet daemons because of improper IAC handling, heres an attached oneliner to reject WILL messages which will allow many more telnet daemons to work with it, namely FreeBSD. | ||||
* | Added mt_interact() -- multithreaded version of interact(). | Guido van Rossum | 1998-12-23 | 1 | -0/+26 |
| | | | | | interact() automatically uses this on Windows (where the single-threaded version doesn't work). | ||||
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -294/+294 |
| | |||||
* | Added debug statements to report data actually sent and received on | Guido van Rossum | 1998-02-19 | 1 | -0/+2 |
| | | | | the socket. | ||||
* | Moved things around a bit in interact(), so outout is processed before | Guido van Rossum | 1997-12-29 | 1 | -4/+5 |
| | | | | | | input. When an EOF is read, break out of the loop instead of (by default) writing an empty line (which doesn't do much good). Don't close self when falling through the loop. | ||||
* | Added expect() method which takes a list of regular expressions and an | Guido van Rossum | 1997-12-24 | 1 | -2/+52 |
| | | | | optional timeout. Also moved some imports around. | ||||
* | Use string.replace instead of regsub.[g]sub. | Guido van Rossum | 1997-12-24 | 1 | -2/+1 |
| | |||||
* | Decided to add the telnet library that I wrote long ago (it's still in | Guido van Rossum | 1997-12-24 | 1 | -0/+424 |
the Demos/cwilib directory). Converted comments to doc strings and used default arguments instead of *args. Updated the example. |