ó
¡¼™\c        
   @  s2  d  Z  d d l m Z m Z d d l Z d d l m Z m Z d d l m	 Z	 d d l
 m Z e d ƒ \
 Z Z Z Z Z Z Z Z Z Z e d	 ƒ \
 Z Z Z Z Z Z Z Z Z Z e d
 ƒ \ Z  Z! Z" Z# Z$ Z% e d ƒ \
 Z& Z' Z( Z) Z* Z+ Z, Z- Z. Z/ e d ƒ \
 Z0 Z1 Z2 Z3 Z4 Z5 Z6 Z7 Z8 Z9 e d ƒ \ Z: Z; Z< Z= Z> Z? e d ƒ \ Z@ ZA ZB ZC e d ƒ \ ZD ZE ZF ZG e d ƒ \ ZH ZI ZJ ZK e d ƒ \ ZL ZM ZN ZO e d ƒ \ ZP ZQ ZR ZS e d ƒ \ ZT ZU ZV ZW eX e jY ƒ ZZ eX e	 ƒ Z[ e[ j\ d ƒ e[ j] d ƒ d „  Z^ e^ ƒ  \ Z_ Z` Za [Z [[ [^ [ d S(   s  
This module exports all latin and greek letters as Symbols, so you can
conveniently do

    >>> from sympy.abc import x, y

instead of the slightly more clunky-looking

    >>> from sympy import symbols
    >>> x, y = symbols('x y')

Caveats
=======

1. As of the time of writing this, the names ``C``, ``O``, ``S``, ``I``, ``N``,
``E``, and ``Q`` are colliding with names defined in SymPy. If you import them
from both ``sympy.abc`` and ``sympy``, the second import will "win".
This is an issue only for * imports, which should only be used for short-lived
code such as interactive sessions and throwaway scripts that do not survive
until the next SymPy upgrade, where ``sympy`` may contain a different set of
names.

2. This module does not define symbol names on demand, i.e.
```from sympy.abc import foo``` will be reported as an error because
``sympy.abc`` does not contain the name ``foo``. To get a symbol named `'foo'`,
you still need to use ``Symbol('foo')`` or ``symbols('foo')``.
You can freely mix usage of ``sympy.abc`` and ``Symbol``/``symbols``, though
sticking with one and only one way to get the symbols does tend to make the code
more readable.
iÿÿÿÿ(   t   print_functiont   divisionNi   (   t   Symbolt   symbols(   t   greeks(   t   exec_s   a, b, c, d, e, f, g, h, i, js   k, l, m, n, o, p, q, r, s, ts   u, v, w, x, y, zs   A, B, C, D, E, F, G, H, I, Js   K, L, M, N, O, P, Q, R, S, Ts   U, V, W, X, Y, Zs   alpha, beta, gamma, deltas   epsilon, zeta, eta, thetas   iota, kappa, lamda, mus   nu, xi, omicron, pis   rho, sigma, tau, upsilons   phi, chi, psi, omegat   lambdat   lamdac          C  sÃ   i  }  t  d |  ƒ i  } i  } xt |  r• |  j ƒ  \ } } | t k rf t | ƒ | | <t j | ƒ q" | t k r" t | ƒ | | <t j | ƒ q" q" Wi  } | j | ƒ | j | ƒ | | | f S(   sR  Return the clashing-symbols dictionaries.

    ``clash1`` defines all the single letter variables that clash with
    SymPy objects; ``clash2`` defines the multi-letter clashing symbols;
    and ``clash`` is the union of both. These can be passed for ``locals``
    during sympification if one desires Symbols rather than the non-Symbol
    objects for those names.

    Examples
    ========

    >>> from sympy import S
    >>> from sympy.abc import _clash1, _clash2, _clash
    >>> S("Q & C", locals=_clash1)
    And(C, Q)
    >>> S('pi(x)', locals=_clash2)
    pi(x)
    >>> S('pi(C, Q)', locals=_clash)
    pi(C, Q)

    Note: if changes are made to the docstring examples they can only
    be tested after removing "clashing" from the list of deleted items
    at the bottom of this file which removes this function from the
    namespace.
    s   from sympy import *(   R   t   popitemt   _greekR   t   removet   _latint   update(   t   nst   clash1t   clash2t   kt   _t   clash(    (    s(   lib/python2.7/site-packages/sympy/abc.pyt   clashingI   s     	(b   t   __doc__t
   __future__R    R   t   stringt   coreR   R   t   core.alphabetsR   t   core.compatibilityR   t   at   bt   ct   dt   et   ft   gt   ht   it   jR   t   lt   mt   nt   ot   pt   qt   rt   st   tt   ut   vt   wt   xt   yt   zt   At   Bt   Ct   Dt   Et   Ft   Gt   Ht   It   Jt   Kt   Lt   Mt   Nt   Ot   Pt   Qt   Rt   St   Tt   Ut   Vt   Wt   Xt   Yt   Zt   alphat   betat   gammat   deltat   epsilont   zetat   etat   thetat   iotat   kappaR   t   mut   nut   xit   omicront   pit   rhot   sigmat   taut   upsilont   phit   chit   psit   omegat   listt   ascii_lettersR   R	   R
   t   appendR   t   _clash1t   _clash2t   _clash(    (    (    s(   lib/python2.7/site-packages/sympy/abc.pyt   <module>   s0   ****	,