ó
öĄ\c           @   sa   d  Z  d d l Z d d l m Z d d l m Z e j Z d e j f d     YZ d   Z d S(   sĖ  
    sphinx.make_mode
    ~~~~~~~~~~~~~~~~

    sphinx-build -M command-line handling.

    This replaces the old, platform-dependent and once-generated content
    of Makefile / make.bat.

    This is in its own module so that importing it is fast.  It should not
    import the main Sphinx modules (like sphinx.applications, sphinx.builders).

    :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS.
    :license: BSD, see LICENSE for details.
i’’’’N(   t	   make_mode(   t   RemovedInSphinx30Warningt   Makec           B   s   e  Z d    Z RS(   c         G   s0   t  j d t d d t t |   j |   d  S(   NsR   sphinx.make_mode.Make is deprecated. Please use sphinx.cmd.make_mode.Make instead.t
   stackleveli   (   t   warningst   warnR   t   superR   t   __init__(   t   selft   args(    (    s/   lib/python2.7/site-packages/sphinx/make_mode.pyR      s    	(   t   __name__t
   __module__R   (    (    (    s/   lib/python2.7/site-packages/sphinx/make_mode.pyR      s   c         C   s#   t  j d t d d t j |   S(   Nsh   sphinx.make_mode.run_make_mode() is deprecated. Please use sphinx.cmd.make_mode.run_make_mode() instead.R   i   (   R   R   R   R    t   run_make_mode(   R	   (    (    s/   lib/python2.7/site-packages/sphinx/make_mode.pyR   #   s    	(	   t   __doc__R   t
   sphinx.cmdR    t   sphinx.deprecationR   t   BUILDERSR   R   (    (    (    s/   lib/python2.7/site-packages/sphinx/make_mode.pyt   <module>   s   	