Go to file
Chris AtLee c3ae82d374 Fix debug_test to use module name and line numbers determined at runtime.
This fixes version-specific values in test_line_nofile, and also makes it
possible to run debug_test.py directly (not under nose).
2010-02-25 13:11:00 -05:00
2010-02-23 21:23:23 -05:00
2010-02-21 18:32:26 -05:00
2010-02-21 10:59:14 -05:00
2010-02-24 20:27:09 -08:00
2010-02-24 16:24:13 -05:00
2010-02-20 15:07:31 -05:00
2010-02-23 17:16:38 -05:00
2010-02-21 13:43:09 -05:00

Getting Started
===============

There's some good documentation up at: http://eventlet.net/doc/

Here's something you can try right on the command line:

% python
>>> import eventlet 
>>> from eventlet.green import urllib2
>>> gt = eventlet.spawn(urllib2.urlopen, 'http://eventlet.net')
>>> gt2 = eventlet.spawn(urllib2.urlopen, 'http://secondlife.com')
>>> gt2.wait()
>>> gt.wait()

Also, look at the examples in the examples directory.

Building the Docs Locally
=========================

To build a complete set of HTML documentation, you must have Sphinx, which can be found at http://sphinx.pocoo.org/ (or installed with `easy_install sphinx`)

  cd doc
  make html
  
The built html files can be found in doc/_build/html afterward.
Description
RETIRED, further work has moved to Debian project infrastructure
Readme 4 MiB
Languages
Python 99.5%
Shell 0.4%
Thrift 0.1%