forked from paramiko/paramiko
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix my email address to be the current one.
- Loading branch information
Robey Pointer
committed
Jul 20, 2009
1 parent
0e2e882
commit 60c6e94
Showing
59 changed files
with
70 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env python | ||
|
||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env python | ||
|
||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env python | ||
|
||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env python | ||
|
||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env python | ||
|
||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env python | ||
|
||
# Copyright (C) 2008 Robey Pointer <[email protected]> | ||
# Copyright (C) 2008 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2008 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2008 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
@@ -47,9 +47,9 @@ | |
Website: U{http://www.lag.net/paramiko/} | ||
@version: 1.7.4 (Desmond) | ||
@version: 1.7.5 (Ernest) | ||
@author: Robey Pointer | ||
@contact: [email protected] | ||
@contact: [email protected] | ||
@license: GNU Lesser General Public License (LGPL) | ||
""" | ||
|
||
|
@@ -59,10 +59,10 @@ | |
raise RuntimeError('You need python 2.2 for this module.') | ||
|
||
|
||
__author__ = "Robey Pointer <[email protected]>" | ||
__date__ = "06 Jul 2008" | ||
__version__ = "1.7.4 (Desmond)" | ||
__version_info__ = (1, 7, 4) | ||
__author__ = "Robey Pointer <[email protected]>" | ||
__date__ = "19 Jul 2009" | ||
__version__ = "1.7.5 (Ernest)" | ||
__version_info__ = (1, 7, 5) | ||
__license__ = "GNU Lesser General Public License (LGPL)" | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2006-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2006-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2006-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2006-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2006-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2006-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2006-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2006-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2006 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2006 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
@@ -198,7 +198,7 @@ class Transport (threading.Thread): | |
""" | ||
|
||
_PROTO_ID = '2.0' | ||
_CLIENT_ID = 'paramiko_1.7.4' | ||
_CLIENT_ID = 'paramiko_1.7.5' | ||
|
||
_preferred_ciphers = ( 'aes128-ctr', 'aes256-ctr', 'aes128-cbc', 'blowfish-cbc', 'aes256-cbc', '3des-cbc', | ||
'arcfour128', 'arcfour256' ) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2008 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2008 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
@@ -48,13 +48,13 @@ | |
|
||
|
||
setup(name = "paramiko", | ||
version = "1.7.4", | ||
version = "1.7.5", | ||
description = "SSH2 protocol library", | ||
author = "Robey Pointer", | ||
author_email = "[email protected]", | ||
author_email = "[email protected]", | ||
url = "http://www.lag.net/paramiko/", | ||
packages = [ 'paramiko' ], | ||
download_url = 'http://www.lag.net/paramiko/download/paramiko-1.7.4.zip', | ||
download_url = 'http://www.lag.net/paramiko/download/paramiko-1.7.5.zip', | ||
license = 'LGPL', | ||
platforms = 'Posix; MacOS X; Windows', | ||
classifiers = [ 'Development Status :: 5 - Production/Stable', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env python | ||
|
||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2009 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2009 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2008 Robey Pointer <[email protected]> | ||
# Copyright (C) 2008 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2006-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2006-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2009 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2009 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2006-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2006-2007 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2009 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2009 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2007 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2009 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
Oops, something went wrong.