<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/eventlet.git/eventlet/green/OpenSSL, branch python3-clean</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>PEP-8 fixes</title>
<updated>2014-08-27T06:21:55+00:00</updated>
<author>
<name>Sergey Shepelev</name>
<email>temotor@gmail.com</email>
</author>
<published>2014-07-18T11:21:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=203e629212be5cf6e53d577734421d494b255754'/>
<id>203e629212be5cf6e53d577734421d494b255754</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python3 compat: 2to3: `except E as e:` syntax</title>
<updated>2013-12-03T18:31:55+00:00</updated>
<author>
<name>Davanum Srinivas</name>
<email>dims@linux.vnet.ibm.com</email>
</author>
<published>2013-09-23T02:56:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=80633ab22486228a64184bb9d8d6fd0ea7977677'/>
<id>80633ab22486228a64184bb9d8d6fd0ea7977677</id>
<content type='text'>
First step to Python 3 compatibility
"2to3 -w -f except ." See [1]

[1] http://docs.python.org/2/library/2to3.html#fixers
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
First step to Python 3 compatibility
"2to3 -w -f except ." See [1]

[1] http://docs.python.org/2/library/2to3.html#fixers
</pre>
</div>
</content>
</entry>
<entry>
<title>Code simplification.</title>
<updated>2010-03-23T03:08:01+00:00</updated>
<author>
<name>amajorek</name>
<email>devnull@localhost</email>
</author>
<published>2010-03-23T03:08:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=a1bfd4f71734a73c3d06617fdf8b036f22df452a'/>
<id>a1bfd4f71734a73c3d06617fdf8b036f22df452a</id>
<content type='text'>
- generic forwarder written for socket and OpenSSL.SSL objects.
In OpenSSL.__init__ instead of overwriting methods on the object level
with GreenSSLConnection methods, these methods are deleted. After that regular class methods are visible.
Backdor forwarder changed to look simmilar to socket forwarder.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- generic forwarder written for socket and OpenSSL.SSL objects.
In OpenSSL.__init__ instead of overwriting methods on the object level
with GreenSSLConnection methods, these methods are deleted. After that regular class methods are visible.
Backdor forwarder changed to look simmilar to socket forwarder.
</pre>
</div>
</content>
</entry>
<entry>
<title>module eventlet.common moved to eventlet.support</title>
<updated>2010-03-10T02:10:15+00:00</updated>
<author>
<name>amajorek</name>
<email>devnull@localhost</email>
</author>
<published>2010-03-10T02:10:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=e153c9207bd3372dadb6bc5326e6196a778457aa'/>
<id>e153c9207bd3372dadb6bc5326e6196a778457aa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>New eventlet.common module to create version-neutral layer. For now only get_errno added there.</title>
<updated>2010-02-28T19:53:07+00:00</updated>
<author>
<name>amajorek</name>
<email>devnull@localhost</email>
</author>
<published>2010-02-28T19:53:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=41ef54f57041473f1d1984ab8f6e58daea1709bc'/>
<id>41ef54f57041473f1d1984ab8f6e58daea1709bc</id>
<content type='text'>
All usage of e[0] replaced with either get_errno(e) or e.args[0] if intnetion was not to extract errno, but first argument
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All usage of e[0] replaced with either get_errno(e) or e.args[0] if intnetion was not to extract errno, but first argument
</pre>
</div>
</content>
</entry>
<entry>
<title>first draft of making eventlet py3k compatible.</title>
<updated>2010-02-26T14:58:07+00:00</updated>
<author>
<name>amajorek</name>
<email>devnull@localhost</email>
</author>
<published>2010-02-26T14:58:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=53a59d9370fc8e7155da4a7c04ad0c15f6c0750a'/>
<id>53a59d9370fc8e7155da4a7c04ad0c15f6c0750a</id>
<content type='text'>
- __import__ used to import system modules in places where local module with the same name exist.
- GreenSocket.timeout private member renamed to _timeout. It is R/O property in 3.x socket.socket object.
- Calls to GreensSocket.timeout changed to call gettimeout to isolate clients from GreenSocket internals.
- GreenSocket access to unknown attributes will be forwarded to fd member. i.e. py3k has _io_refs property not needed in 2.x version
- get_errno moved to eventlet/greenio.py to be accessible to every place where testing socket.error.errno is needed
- Modified tests to use makefile with mode='w' where data was written. 3.x does not allow to write to file opened for reading.
- socket._fileobject class does not exist in 3.x. It will be emulated with _fileobject function. Also moved definition from eventlet.green.socket to eventlet.grreenio.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- __import__ used to import system modules in places where local module with the same name exist.
- GreenSocket.timeout private member renamed to _timeout. It is R/O property in 3.x socket.socket object.
- Calls to GreensSocket.timeout changed to call gettimeout to isolate clients from GreenSocket internals.
- GreenSocket access to unknown attributes will be forwarded to fd member. i.e. py3k has _io_refs property not needed in 2.x version
- get_errno moved to eventlet/greenio.py to be accessible to every place where testing socket.error.errno is needed
- Modified tests to use makefile with mode='w' where data was written. 3.x does not allow to write to file opened for reading.
- socket._fileobject class does not exist in 3.x. It will be emulated with _fileobject function. Also moved definition from eventlet.green.socket to eventlet.grreenio.
</pre>
</div>
</content>
</entry>
<entry>
<title>Moved trampoline into hubs/__init__, which maybe is the best place for it; open to suggestions.</title>
<updated>2010-01-24T20:41:53+00:00</updated>
<author>
<name>Ryan Williams</name>
<email>rdw@lindenlab.com</email>
</author>
<published>2010-01-24T20:41:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=dcaf5512565ad299b47683835418bc015edecc8d'/>
<id>dcaf5512565ad299b47683835418bc015edecc8d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added eventlet.green.OpenSSL to further rationalize our SSL support, carved off ssl tests into ssl_test.py, and added some docs on coverage.</title>
<updated>2009-11-28T04:56:30+00:00</updated>
<author>
<name>Ryan Williams</name>
<email>rdw@lindenlab.com</email>
</author>
<published>2009-11-28T04:56:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/eventlet.git/commit/?id=a25b889a52f24a7ac51dcb55822ca7a3217d7e46'/>
<id>a25b889a52f24a7ac51dcb55822ca7a3217d7e46</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
