File: //opt/alt/python27/lib64/python2.7/site-packages/numpy/_globals.pyo
�
�9Zc           @` s�   d  Z  d d l m Z m Z m Z d d d g Z d e �  k rO e d � � n  e Z	 d e
 f d �  �  YZ d e f d	 �  �  YZ
 d d d
 �  �  YZ d S(
   sI  
Module defining global singleton classes.
This module raises a RuntimeError if an attempt to reload it is made. In that
way the identities of the classes defined here are fixed and will remain so
even if numpy itself is reloaded. In particular, a function like the following
will still work correctly after numpy is reloaded::
    def foo(arg=np._NoValue):
        if arg is np._NoValue:
            ...
That was not the case when the singleton classes were defined in the numpy
``__init__.py`` file. See gh-7844 for a discussion of the reload problem that
motivated this module.
i    (   t   divisiont   absolute_importt   print_functiont   ModuleDeprecationWarningt   VisibleDeprecationWarningt   _NoValuet
   _is_loadeds'