<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/eventlet.git/tests/debug_test.py, branch 485-https-noverify-env</title>
<subtitle>github.com: eventlet/eventlet.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/'/>
<entry>
<title>Fix for Python 3.7 (#506)</title>
<updated>2018-09-28T15:08:59+00:00</updated>
<author>
<name>Marcel Plch</name>
<email>mplch@redhat.com</email>
</author>
<published>2018-09-28T15:08:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=cf47cb518db3e0dbdd48473fb40cf9f6ecd50e07'/>
<id>cf47cb518db3e0dbdd48473fb40cf9f6ecd50e07</id>
<content type='text'>
* Fix for Python 3.7

* Remove redundant piece of code.

* Put back do_handshake_on_connect kwarg

* Use Python 3.7 instead of 3.7-dev

* Fix buildbot failing permissions with 3.7

* tests: env_tpool_zero assert details

* setup: Python 3.7 classificator
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Fix for Python 3.7

* Remove redundant piece of code.

* Put back do_handshake_on_connect kwarg

* Use Python 3.7 instead of 3.7-dev

* Fix buildbot failing permissions with 3.7

* tests: env_tpool_zero assert details

* setup: Python 3.7 classificator
</pre>
</div>
</content>
</entry>
<entry>
<title>external dependencies for six, monotonic, dnspython</title>
<updated>2018-05-10T17:33:32+00:00</updated>
<author>
<name>nat-goodspeed</name>
<email>nat@lindenlab.com</email>
</author>
<published>2018-05-10T17:33:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=53b63c66f0d9a7d6ba9182a207529ebd949e95f3'/>
<id>53b63c66f0d9a7d6ba9182a207529ebd949e95f3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>moved function eventlet.support.capture_stderr to tests</title>
<updated>2018-03-10T18:39:44+00:00</updated>
<author>
<name>Sergey Shepelev</name>
<email>temotor@gmail.com</email>
</author>
<published>2018-03-10T06:40:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=a76e4a556abc8f1cf70f61e32be98f303194ac53'/>
<id>a76e4a556abc8f1cf70f61e32be98f303194ac53</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor capturing stderr into a context manager</title>
<updated>2014-10-15T22:58:18+00:00</updated>
<author>
<name>Jakub Stasiak</name>
<email>jakub@stasiak.at</email>
</author>
<published>2014-10-15T22:58:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=e7b08cf398acbf9560483ef5c3b4013328fbca76'/>
<id>e7b08cf398acbf9560483ef5c3b4013328fbca76</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: deprecated TestCase.assert_() -&gt; assert keyword</title>
<updated>2014-07-16T11:15:50+00:00</updated>
<author>
<name>Sergey Shepelev</name>
<email>temotor@gmail.com</email>
</author>
<published>2014-07-16T09:54:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=a651a3097f7ba957ad29342dac011d5a9218e76b'/>
<id>a651a3097f7ba957ad29342dac011d5a9218e76b</id>
<content type='text'>
https://github.com/eventlet/eventlet/issues/101
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/eventlet/eventlet/issues/101
</pre>
</div>
</content>
</entry>
<entry>
<title>python3 compatibility</title>
<updated>2014-04-24T14:11:37+00:00</updated>
<author>
<name>Sergey Shepelev</name>
<email>temotor@gmail.com</email>
</author>
<published>2014-04-24T13:51:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=cbd404d56e231ea5419f07795a12d7082dd70ec4'/>
<id>cbd404d56e231ea5419f07795a12d7082dd70ec4</id>
<content type='text'>
- __next__ for iterator interface
- six.next() to get next item
- list(dict.keys())
- popen2.popen4 -&gt; subprocess
- s2b -&gt; b"..." literals
- deprecated assertEquals -&gt; assertEqual
- hub_test test_fork using run_python
- 1L -&gt; 1 long literal
- many PEP-8 fixes
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- __next__ for iterator interface
- six.next() to get next item
- list(dict.keys())
- popen2.popen4 -&gt; subprocess
- s2b -&gt; b"..." literals
- deprecated assertEquals -&gt; assertEqual
- hub_test test_fork using run_python
- 1L -&gt; 1 long literal
- many PEP-8 fixes
</pre>
</div>
</content>
</entry>
<entry>
<title>PEP-8 fixes, tox runs pep8 check</title>
<updated>2014-04-23T11:15:22+00:00</updated>
<author>
<name>Sergey Shepelev</name>
<email>temotor@gmail.com</email>
</author>
<published>2014-04-23T09:29:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=2da62a16c392898623449bd53413ce804b4cb413'/>
<id>2da62a16c392898623449bd53413ce804b4cb413</id>
<content type='text'>
For now, pep8 check is only run for some files known to be clean,
we should clean the rest and enable pep8 check for all files then.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For now, pep8 check is only run for some files known to be clean,
we should clean the rest and enable pep8 check for all files then.
</pre>
</div>
</content>
</entry>
<entry>
<title>python3 compatibility: range, zip, StringIO</title>
<updated>2014-04-23T08:20:10+00:00</updated>
<author>
<name>Viktors</name>
<email>viktor.sergeyev@gmail.com</email>
</author>
<published>2014-04-17T18:07:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=92d12567b20dbe159a1a8a8db4d2cd05d15e6588'/>
<id>92d12567b20dbe159a1a8a8db4d2cd05d15e6588</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>py3k - more testcases ported</title>
<updated>2010-03-07T09:28:25+00:00</updated>
<author>
<name>amajorek</name>
<email>devnull@localhost</email>
</author>
<published>2010-03-07T09:28:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=fcafbbf322c3c38079bf05ab21db0b7a3139e867'/>
<id>fcafbbf322c3c38079bf05ab21db0b7a3139e867</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix debug_test to use module name and line numbers determined at runtime.</title>
<updated>2010-02-25T18:11:00+00:00</updated>
<author>
<name>Chris AtLee</name>
<email>catlee@mozilla.com</email>
</author>
<published>2010-02-25T18:11:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=c3ae82d3743df7edc77a004475a82b9645360b6a'/>
<id>c3ae82d3743df7edc77a004475a82b9645360b6a</id>
<content type='text'>
This fixes version-specific values in test_line_nofile, and also makes it
possible to run debug_test.py directly (not under nose).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes version-specific values in test_line_nofile, and also makes it
possible to run debug_test.py directly (not under nose).
</pre>
</div>
</content>
</entry>
</feed>
