0
I Use This!
Very Low Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Jul 26, 2024 — Jul 26, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-160] 1.3 marowak bump version to 1.3 / marowak More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-159] clean up SFTPAttributes.__repr__ clean up SFTPAttributes repr() a bit. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-158] remove ChangeLog from MANIFEST.in remove ChangeLog from the dist list. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-157] change SubsystemHandler/SFTPServerInterface API change the API of SubsystemHandler to accept a reference to the ServerInstance object during construction. this will break all code that currently creates subsystem handlers (like sftp servers) -- sorry! More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-156] rewrite channel pipes to work on windows the pipe system i was using for simulating an os-level FD (for select) was retarded. i realized this week that i could just use a single byte in the pipe to signal "data is ready" and not try to feed all incoming data thru the pipe -- and then i don't have to try to make the pipe non-blocking (which should make it work on windows). a lot of duplicate code got removed and now it's all going thru the same code-path on read. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-155] fix sending of large sftp packet sizes fix a bug where packets larger than about 12KB would cause the session to die on platforms other than osx. turns out that on most platforms, setting a socket timeout also causes timeouts to occur on writes (but not on osx). so on a huge write, once the os buffers were full, paramiko would get a socket.timeout exception when writing, and bail. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-154] even better 1.2 lapras re-bump the version # to 1.2 (with a new date since i added more stuff). add 2005 to the copyright date in a bunch of files. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-153] tweak sftp_file write behavior on large blocks of data BufferedFile.write() wasn't correctly dealing with the possibility that the underlying write might not write the entire data block at once (even though the docs said it would). now that it's working, make sftp_file take advantage of it in order to chop up blocks larger than 32kB (the max allowed on sftp) and add a unit test for it. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-152] little doc fixes stupid little doc fixups that didn't fit with the other patches. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-151] fix race in transport thread startup set active=True from the methods that start the main transport thread, right before actually starting the thread. this avoids a race where the main thread could be started, but the original thread could wake up from the event.wait(0.1) before the new thread actually set the transport active. impossible, you say? no machines so slow exist? au contraire, my sad little linux box faced this problem earlier today. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-150] when combining stderr with stdout on a channel, merge the buffers too when turning on combine-stderr mode on a channel, grab the channel lock and feed any existing stderr buffer into the normal buffer. this should help applications (and my unit tests) avoid races between data coming in over stderr and setting combine-stderr. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-149] add thread ids to logs add a logging filter that reports the thread-id of the logger, and use that for all paramiko logging. since thread-local stuff didn't appear until python 2.4, i hacked up my own little version to assign incrementing numbers to threads as they log. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-148] forgot to check in stub_sftp yikes! don't forget to check this in: needed for unit tests. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-147] 1.2 (lapras) bump version stuff to 1.2 / lapras. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-146] raise better exception on empty key raise a clearer exception when trying to create an empty key. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-145] add methods for sending/receiving a channel's exit status track a channel's exit status and provide a method (recv_exit_status) to block waiting for it to arrive. also provide a convenience method for servers to send it (send_exit_status). add shutdown_read and shutdown_write. fix a bug in sending window change requests. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-144] fix docs clean up some of the docs. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-143] fix an sftp unit test fix one of the sftp unit tests to actually work. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-142] fix windows sample script's HOME fix the HOME environ var to work on windows too. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-141] misc logging fixes change the level of some log messages so interesting stuff gets logged at info instead of debug. fix an oops where channels defaulted to being in ultra debug mode, and make this mode depend on a new Transport method: "set_hexdump". More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-140] more flexible logging some tweaks to make channels etc follow the logger setting of their parent transport, so that setting the log channel for a paramiko transport will cause all sub-logging to branch out from that channel. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-139] make loopback sftp tests the default change the unit tests to default to always running the sftp tests locally, and make a -R option to force the tests to run against a remote server. the tests seem to work fine locally, and it helps test out server mode, even though there's a danger that they could get isolated from reality and only test that paramiko can talk to itself. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-138] doc fixups little doc fixups that i did obsessively on the train one morning. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-137] added listdir_attr() add SFTPClient.listdir_attr() to fetch a list of files & their attributes, instead of just their filenames. artur piwko would find this useful. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-136] loopback sftp test add ability to turn off more tests, and a secret (for now) -X option to do the sftp tests via loopback socket. added another symlink sftp test to see what happens with absolute symlinks. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-135] more sftp cleanup oops, this should've been part of the last patch. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-134] cleanup & docs in sftp add some more docs to SFTPHandle, and give a default implementation for close() that's usually right. add a flush() to the default implementation of write(). document that symlink's args in the sftp protocol are out of order (the spec is wrong). More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-133] unit test madness add some more testy bits and fix up some other bits. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-132] oops (continued) er, part 2 of that. More... over 20 years ago
[project @ Arch-1:[email protected]%secsh--dev--1.0--patch-131] move check_global_request move check_global_request into the server interface -- i missed it during the initial move (oops). More... over 20 years ago