summaryrefslogtreecommitdiff
path: root/paramiko/sftp_handle.py
Commit message (Collapse)AuthorAgeFilesLines
* Start fixing up blatantly wrong-under-py3 docstring typesJeff Forcier2023-01-121-2/+2
|
* Fix Free Software Foundation addressPaul Howarth2022-03-151-1/+1
| | | | They moved from Temple Place to Franklin Street in 2005.
* Blacken Paramiko on 2.4Chris Rose2018-05-171-5/+6
|
* Move to 'inv sites' style doc nitpicking.Jeff Forcier2017-06-051-6/+4
| | | | | | | Existing just-warnings setup was old and not as rigorous as my usual. Required a lot of stupid little changes, but now same tooling for all projects, toot toot.
* Fix documentation build failure.Dorian Pula2017-05-311-1/+1
|
* Flake8 improvements for more of paramiko.Dorian Pula2017-05-311-7/+8
|
* untie agian!james mike dupont2017-01-241-1/+1
|
* Turn SFTPHandle into context managersMichael Williamson2014-09-071-1/+4
|
* Fix import * and a bunch of PEP8 formattingScott Maxwell2014-03-071-6/+2
|
* Merge remote-tracking branch 'scottkmaxwell/py3-support-without-py25' into ↵Jeff Forcier2014-03-051-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | python3 Conflicts: dev-requirements.txt paramiko/__init__.py paramiko/file.py paramiko/hostkeys.py paramiko/message.py paramiko/proxy.py paramiko/server.py paramiko/transport.py paramiko/util.py paramiko/win_pageant.py setup.py
| * Change all exceptions to modern format (not Py2.5 compatible)Scott Maxwell2013-11-191-4/+2
| |
| * Fix dict iters, sorts, exceptions, bytes renames and tuple argsScott Maxwell2013-10-301-2/+4
| |
* | SFTP done, ughJeff Forcier2014-02-261-14/+9
| |
* | Wow there's a lot of SFTP crap.Jeff Forcier2014-02-211-2/+2
| |
* | s/python/Python/, c'mon son!Jeff Forcier2014-02-211-5/+5
| |
* | Don't actually need :class: anywhere nowJeff Forcier2014-02-211-9/+9
| |
* | Replace accidental class-refs on local method-refsJeff Forcier2014-02-211-2/+2
| |
* | Mass SnR of class refs with dotted ones.Jeff Forcier2014-02-211-7/+7
| | | | | | | | | | | | | | | | Boo on Sphinx for not letting me just change this behavior by default. There are a handful of incorrect items here that will get tweaked later.
* | Epydoc -> Sphinx.Olle Lundberg2014-01-231-40/+40
|/
* Fixed a typo in the license header of most filesJeff Forcier2013-09-271-1/+1
| | | | | Conflicts: paramiko/proxy.py
* fix my email address to be the current one.Robey Pointer2009-07-191-1/+1
|
* [project @ robey@lag.net-20070213191706-v8djxd4jiunb3his]Robey Pointer2007-02-131-1/+1
| | | | bump copyright year to 2007
* [project @ robey@lag.net-20060822025601-aab3b723b95d3a9c]Robey Pointer2006-08-211-7/+19
| | | | add 'flags' param to SFTPHandle and make the default impl avoid calling tell() when in append mode; add proper append-mode support to stub_sftp
* [project @ robey@lag.net-20060220005934-58d0df2920e799b5]Robey Pointer2006-02-191-1/+1
| | | | update copyright year
* [project @ robey@master-shake.local-20060115063008-4f68552398868788]Robey Pointer2006-01-141-9/+11
| | | | fix a bunch of pychecker warnings, some of which were actual (but unlikely) bugs
* [project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-65]Robey Pointer2005-10-131-3/+4
| | | | remove unnecessary shebangs, fix import lines to be explicit about imports from within paramiko, and a bit of whitespace cleanup
* [project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-29]Robey Pointer2005-07-101-6/+6
| | | | a bunch of silly changes where i was trying to fix pychecker warnings before i decided it wasnt worth the effort
* [project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-154]Robey Pointer2005-02-281-1/+1
| | | | | | | 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.
* [project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-140]Robey Pointer2005-01-171-4/+4
| | | | | | | | | | 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. also, close all open file handles when the sftp server ends.
* [project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-134]Robey Pointer2004-12-191-1/+14
| | | | | | | | | 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).
* [project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-113]Robey Pointer2004-11-221-0/+174
sftp server support! finally check in sftp_handle (file handle abstraction), sftp_si (server interface), and sftp_server (server implementation) -- all of which make a roughly 90% implementation of server-side sftp.