__init__.py 168 B

12345
  1. # This __init__.py shows up in PyPy's app-level standard library.
  2. # Let's try to prevent that confusion...
  3. if __name__ != 'lib_pypy':
  4. raise ImportError('__init__')