<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/paramiko.git/tests/loop.py, branch python3</title>
<subtitle>github.com: paramiko/paramiko.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/paramiko.git/'/>
<entry>
<title>Start in on star import eradication</title>
<updated>2014-03-08T00:17:19+00:00</updated>
<author>
<name>Jeff Forcier</name>
<email>jeff@bitprophet.org</email>
</author>
<published>2014-03-08T00:17:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/paramiko.git/commit/?id=b4cd4bea1d5616dac5bc9c8a9c320164667d1533'/>
<id>b4cd4bea1d5616dac5bc9c8a9c320164667d1533</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Changes inspired by the nischu7 branch</title>
<updated>2013-11-01T16:49:52+00:00</updated>
<author>
<name>Scott Maxwell</name>
<email>scott@codecobblers.com</email>
</author>
<published>2013-11-01T16:49:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/paramiko.git/commit/?id=9662a7f779636f0328263a81cdeb76af25802970'/>
<id>9662a7f779636f0328263a81cdeb76af25802970</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>More type conversion</title>
<updated>2013-10-31T22:25:45+00:00</updated>
<author>
<name>Scott Maxwell</name>
<email>scott@codecobblers.com</email>
</author>
<published>2013-10-31T22:25:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/paramiko.git/commit/?id=7a45d3c70f6f308835ab66e3899e247e0efc17e7'/>
<id>7a45d3c70f6f308835ab66e3899e247e0efc17e7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert and detect types properly, use helper constants, use StringIO and range</title>
<updated>2013-10-31T00:14:52+00:00</updated>
<author>
<name>Scott Maxwell</name>
<email>scott@codecobblers.com</email>
</author>
<published>2013-10-31T00:14:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/paramiko.git/commit/?id=0b7d0cf0a23e4f16f8552ae05a66539119e2e920'/>
<id>0b7d0cf0a23e4f16f8552ae05a66539119e2e920</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix imports</title>
<updated>2013-10-30T23:19:30+00:00</updated>
<author>
<name>Scott Maxwell</name>
<email>scott@codecobblers.com</email>
</author>
<published>2013-10-30T23:19:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/paramiko.git/commit/?id=66cfa97cce92b1d60383d178887b18dddb999fc1'/>
<id>66cfa97cce92b1d60383d178887b18dddb999fc1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed a typo in the license header of most files</title>
<updated>2013-09-28T04:29:18+00:00</updated>
<author>
<name>Jeff Forcier</name>
<email>jeff@bitprophet.org</email>
</author>
<published>2013-09-28T04:29:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/paramiko.git/commit/?id=83f44878eaacce5ee2bab0aa7f03a36743fea044'/>
<id>83f44878eaacce5ee2bab0aa7f03a36743fea044</id>
<content type='text'>
Conflicts:
	paramiko/proxy.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	paramiko/proxy.py
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove comparison between int and str</title>
<updated>2012-09-23T23:18:57+00:00</updated>
<author>
<name>Bobby Impollonia</name>
<email>bobby@affinesystems.com</email>
</author>
<published>2012-03-11T02:10:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/paramiko.git/commit/?id=ae3ecbe5487d3948a8c4e13d8f0e7fd86f387f80'/>
<id>ae3ecbe5487d3948a8c4e13d8f0e7fd86f387f80</id>
<content type='text'>
The code had been doing 'n &lt; self.__in_buffer' when it
wanted to be doing 'n &lt; len(self.__in_buffer)'

In Python 2.x, this comparison (int &lt; str) is always True.
I found this while porting to Python 3 where it raises
an error.

The code has been working without complaints because always
taking the true branch of this conditional is actually fine.
We don't need the false branch, so drop the check entirely.
(cherry picked from commit 0a013f829e9eb20fb037a2ac06c230d9074fbe90)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The code had been doing 'n &lt; self.__in_buffer' when it
wanted to be doing 'n &lt; len(self.__in_buffer)'

In Python 2.x, this comparison (int &lt; str) is always True.
I found this while porting to Python 3 where it raises
an error.

The code has been working without complaints because always
taking the true branch of this conditional is actually fine.
We don't need the false branch, so drop the check entirely.
(cherry picked from commit 0a013f829e9eb20fb037a2ac06c230d9074fbe90)
</pre>
</div>
</content>
</entry>
<entry>
<title>fix my email address to be the current one.</title>
<updated>2009-07-20T02:45:02+00:00</updated>
<author>
<name>Robey Pointer</name>
<email>robey@twitter.com</email>
</author>
<published>2009-07-20T02:45:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/paramiko.git/commit/?id=60c6e94e7dd6d7ac65c88ce1231f55d311777a34'/>
<id>60c6e94e7dd6d7ac65c88ce1231f55d311777a34</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[project @ robey@lag.net-20070213191706-v8djxd4jiunb3his]</title>
<updated>2007-02-13T19:17:06+00:00</updated>
<author>
<name>Robey Pointer</name>
<email>robey@lag.net</email>
</author>
<published>2007-02-13T19:17:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/paramiko.git/commit/?id=83b335e10f1129e54e5fa5f8c72acb5407c21219'/>
<id>83b335e10f1129e54e5fa5f8c72acb5407c21219</id>
<content type='text'>
bump copyright year to 2007
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
bump copyright year to 2007
</pre>
</div>
</content>
</entry>
<entry>
<title>[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-154]</title>
<updated>2005-02-28T08:06:08+00:00</updated>
<author>
<name>Robey Pointer</name>
<email>robey@lag.net</email>
</author>
<published>2005-02-28T08:06:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/paramiko.git/commit/?id=fead211c5ca75b654c218c6bcfc75552284719c6'/>
<id>fead211c5ca75b654c218c6bcfc75552284719c6</id>
<content type='text'>
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.

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.

</pre>
</div>
</content>
</entry>
</feed>
