~ubuntu-branches/ubuntu/vivid/python-gevent/vivid

« back to all changes in this revision

Viewing changes to gevent/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Örjan Persson
  • Date: 2011-05-17 16:43:20 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110517164320-844bxblhlra65dml
Tags: 0.13.6-1
New upstream version (Closes: #601863).

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
See http://www.gevent.org/ for the documentation.
7
7
"""
8
8
 
9
 
version_info = (0, 13, 0)
10
 
__version__ = '0.13.0'
 
9
version_info = (0, 13, 6)
 
10
__version__ = '0.13.6'
 
11
__changeset__ = '1734:6c834b912c36'
11
12
 
12
13
__all__ = ['Greenlet',
13
14
           'GreenletExit',
33
34
 
34
35
import sys
35
36
if sys.platform == 'win32':
36
 
    __import__('socket') # trigger WSAStartup call
 
37
    __import__('socket')  # trigger WSAStartup call
37
38
del sys
38
39
 
39
40