0
I Use This!
Very Low Activity

Commits : Listings

Analyzed about 1 hour ago. based on code collected about 1 hour ago.
Aug 18, 2024 — Aug 18, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
[project @ [email protected]] improve x11 test and add a test for reverse port forwarding More... over 18 years ago
[project @ [email protected]] add a convenience method for open_forwarded_tcpip_channel More... over 18 years ago
[project @ [email protected]] slightly improve docs; mention check_channel_x11_request More... over 18 years ago
[project @ [email protected]] fix a couple of typos discovered by mczepiel. More... over 18 years ago
[project @ [email protected]] add another test to check out private key auth. More... over 18 years ago
[project @ [email protected]] patch from mpool to fix a python 2.5 warning: stat() returns floats for times and we want to encode them as ints. More... over 18 years ago
[project @ [email protected]] an errant slash was making unit tests unrunnable on windows More... over 18 years ago
[project @ [email protected]] as john arbash meinel points out, this assert wasn't validating internal consistency, because a readv() request may ask for more data than is left in the file. so remove the assert. More... over 18 years ago
[project @ [email protected]] once, this test failed, so add a timer More... over 18 years ago
[project @ [email protected]] fix bug in prefetch confirmation More... over 18 years ago
[project @ [email protected]] if connecting to the agent fails, assume it's just not there, and don't raise an exception. (suggestion from martin pool on bazaar-dev.) More... over 18 years ago
[project @ [email protected]] remove silly comment about compression not being tested More... over 18 years ago
[project @ [email protected]] don't need to expanduser twice More... over 18 years ago
[project @ [email protected]] add a ResourceManager to replace __del__ methods, and use it in SSHClient to automatically close any open transport when the SSHClient is collected. this won't work on Transport itself (to close the attached packetizer) because Transport starts up its own thread, and the threading library keeps a Transport object alive to run that thread. i think that's okay; the SSHClient interface is meant to be the easier one, so that's the one where it's important that some auto-cleanup is attempted. More... over 18 years ago
[project @ [email protected]] bug 75370: notice garbage sftp packets since sftp packets shouldn't be larger than about 32k, if the first length byte is non-zero (ie, the packet size > 16M), raise an exception. More... over 18 years ago
[project @ [email protected]] potential port forwarding support; probably buggly cuz i haven't added unit tests yet :) More... over 18 years ago
[project @ [email protected]] absorb socket.errors caused by a closed socket if we knew it was closed More... over 18 years ago
[project @ [email protected]] add support for opening x11 channels, and a unit test More... over 18 years ago
[project @ [email protected]] reorder the closing of the pipe in Channel.close() to make sure it happens even when the channel is closed by the remote host first More... over 18 years ago
[project @ [email protected]] bump version to 1.6.4 (yanma) and trim the README changes-history a bit More... over 18 years ago
[project @ [email protected]] sometimes the sftp module is used with raw sockets, not just paramiko Channels. in this case, calling recv() will never return. so notice this and use select() to give python a chance to notice a closed socket. this kind of thing is especially useful for unit tests. More... almost 19 years ago
[project @ [email protected]] a bit of cleanup in close() to try harder to avoid having lingering threads More... almost 19 years ago
[project @ [email protected]] try a trick that should let 'hostkeys[hostname][keytype] = key' work for HostKeys objects again. More... almost 19 years ago
[project @ [email protected]] use python from env for unit tests More... almost 19 years ago
[project @ [email protected]] bug 70398: allow constructions like: hostkeys['hostname'] = {} to create an empty host entry object, so that future attempts to set keys will at least not throw an exception. (they'll still silently do nothing, though.) More... almost 19 years ago
[project @ [email protected]] (bug 69222) on some recent linux kernels, a socket can return "readable" from select, but a subsequent read() will return EAGAIN. this is against the contract of select(), so python's socketmodule doesn't catch it or handle it. therefore, we need to. EAGAIN should now be treated the same as a socket timeout. More... almost 19 years ago
[project @ [email protected]] (bug 69330) in SFTPClient._auth, check for the existence of the rsa/dsa keys before trying to open them, so that an I/O exception doesn't mask an earlier one. More... almost 19 years ago
[project @ [email protected]] include setup_helper.py in the manifest More... almost 19 years ago
[project @ [email protected]] bump version to 1.6.3 More... almost 19 years ago
[project @ [email protected]] might as well assert this More... almost 19 years ago