From fead211c5ca75b654c218c6bcfc75552284719c6 Mon Sep 17 00:00:00 2001 From: Robey Pointer Date: Mon, 28 Feb 2005 08:06:08 +0000 Subject: [project @ Arch-1:robey@lag.net--2003-public%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. --- tests/loop.py | 2 +- tests/stub_sftp.py | 2 +- tests/test_file.py | 2 +- tests/test_kex.py | 2 +- tests/test_message.py | 2 +- tests/test_pkey.py | 2 +- tests/test_sftp.py | 8 ++++---- tests/test_transport.py | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) (limited to 'tests') diff --git a/tests/loop.py b/tests/loop.py index 22a173fa..ad5f7ca5 100644 --- a/tests/loop.py +++ b/tests/loop.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright (C) 2003-2004 Robey Pointer +# Copyright (C) 2003-2005 Robey Pointer # # This file is part of paramiko. # diff --git a/tests/stub_sftp.py b/tests/stub_sftp.py index e1dbb97f..639477cc 100644 --- a/tests/stub_sftp.py +++ b/tests/stub_sftp.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright (C) 2003-2004 Robey Pointer +# Copyright (C) 2003-2005 Robey Pointer # # This file is part of paramiko. # diff --git a/tests/test_file.py b/tests/test_file.py index 7914a43f..250821cc 100755 --- a/tests/test_file.py +++ b/tests/test_file.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright (C) 2003-2004 Robey Pointer +# Copyright (C) 2003-2005 Robey Pointer # # This file is part of paramiko. # diff --git a/tests/test_kex.py b/tests/test_kex.py index c7a86899..f4e91932 100644 --- a/tests/test_kex.py +++ b/tests/test_kex.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright (C) 2003-2004 Robey Pointer +# Copyright (C) 2003-2005 Robey Pointer # # This file is part of paramiko. # diff --git a/tests/test_message.py b/tests/test_message.py index 218ab529..441e3ceb 100644 --- a/tests/test_message.py +++ b/tests/test_message.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright (C) 2003-2004 Robey Pointer +# Copyright (C) 2003-2005 Robey Pointer # # This file is part of paramiko. # diff --git a/tests/test_pkey.py b/tests/test_pkey.py index 6bbeb53d..3fe48618 100644 --- a/tests/test_pkey.py +++ b/tests/test_pkey.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright (C) 2003-2004 Robey Pointer +# Copyright (C) 2003-2005 Robey Pointer # # This file is part of paramiko. # diff --git a/tests/test_sftp.py b/tests/test_sftp.py index ba00a184..79a52c25 100755 --- a/tests/test_sftp.py +++ b/tests/test_sftp.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright (C) 2003-2004 Robey Pointer +# Copyright (C) 2003-2005 Robey Pointer # # This file is part of paramiko. # @@ -438,16 +438,16 @@ class SFTPTest (unittest.TestCase): finally: sftp.remove('%s/hongry.txt' % FOLDER) - def test_E_big_file_no_buffer(self): + def test_E_big_file_big_buffer(self): """ - write a 1MB file, with no linefeeds, and no buffering. + write a 1MB file, with no linefeeds, and a big buffer. """ global g_big_file_test if not g_big_file_test: return kblob = (1024 * 1024 * 'x') try: - f = sftp.open('%s/hongry.txt' % FOLDER, 'w') + f = sftp.open('%s/hongry.txt' % FOLDER, 'w', 128 * 1024) f.write(kblob) f.close() diff --git a/tests/test_transport.py b/tests/test_transport.py index 71ca140d..bd11487f 100644 --- a/tests/test_transport.py +++ b/tests/test_transport.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright (C) 2003-2004 Robey Pointer +# Copyright (C) 2003-2005 Robey Pointer # # This file is part of paramiko. # -- cgit v1.2.3