???<!-- GIF89;a -->
123123123123
.....................................................................................................................................???<!-- GIF89;a -->
123123123123
.....................................................................................................................................ž
§ÿf3  c            "   @   sn  d  Z  d d l Z d d l Z d d l Td d l m Z m Z m Z m Z m	 Z	 m
 Z
 m Z d d d d d	 d
 d d d d d d d d d d d d d d d d d d d d d d  d! d" d# d$ d% d& g" Z d' Z d( Z d' Z d) Z d* Z d+ Z d, Z d- Z d. d „  Z d/ d „  Z d0 d „  Z d1 d „  Z d2 d „  Z e Z d3 d „  Z d4 d „  Z d5 d „  Z e Z d6 Z! d S(7   uŒ   Common pathname manipulations, OS/2 EMX version.

Instead of importing this module directly, import os and refer to this
module as os.path.
i    N(   u   *(   u
   expanduseru
   expandvarsu   isabsu   islinku
   splitdriveu   splitextu   splitu   normcaseu   isabsu   joinu
   splitdriveu   splitu   splitextu   basenameu   dirnameu   commonprefixu   getsizeu   getmtimeu   getatimeu   getctimeu   islinku   existsu   lexistsu   isdiru   isfileu   ismountu
   expanduseru
   expandvarsu   normpathu   abspathu   splituncu   curdiru   pardiru   sepu   pathsepu   defpathu   altsepu   extsepu   devnullu   realpathu   supports_unicode_filenamesu   .u   ..u   /u   \u   ;u   .;C:\binu   nulc             C   sI   t  |  t t f ƒ s3 t d j |  j j ƒ ƒ ‚ n  |  j d d ƒ j ƒ  S(   uZ   Normalize case of pathname.

    Makes all characters lowercase and all altseps into seps.u2   normcase() argument must be str or bytes, not '{}'u   \u   /(	   u
   isinstanceu   bytesu   stru	   TypeErroru   formatu	   __class__u   __name__u   replaceu   lower(   u   s(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   normcase#   s    	c             G   sm   |  } x` | D]X } t  | ƒ r( | } q | d k sJ | d d … d k rW | | } q | d | } q W| S(   u=   Join two or more pathname components, inserting sep as neededu    i   Nu   /\:u   /iÿÿÿÿ(   u   isabs(   u   au   pu   pathu   b(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   join/   s    	"c             C   sÕ   |  d d … d k r  d |  f S|  d d … } | d	 k sH | d
 k rË t  |  ƒ } | j d d ƒ } | d k r| d |  f S| j d | d ƒ } | d k r­ t |  ƒ } n  |  d | … |  | d … f Sd |  f S(   u@  Split a pathname into UNC mount point and relative path specifiers.

    Return a 2-tuple (unc, rest); either part may be empty.
    If unc is not empty, it has the form '//host/mount' (or similar
    using backslashes).  unc+rest is always the input path.
    Paths containing drive letters never have an UNC part.
    i   i   u   :u    i    u   /u   \Nu   //u   \\iÿÿÿÿiÿÿÿÿ(   u   normcaseu   findu   len(   u   pu   firstTwou   normpu   index(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   splitunc=   s    

c             C   s   t  |  ƒ d S(   u)   Returns the final component of a pathnamei   (   u   split(   u   p(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   basename[   s    c             C   s   t  |  ƒ d S(   u-   Returns the directory component of a pathnamei    (   u   split(   u   p(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   dirnameb   s    c             C   sR   t  |  ƒ \ } } | r" | d k St |  ƒ d } t | ƒ d k oQ | d d k S(   u?   Test whether a path is a mount point (defined as root of drive)u    u   /u   \i   i    u   /\(   u    u   /u   \(   u   splituncu
   splitdriveu   len(   u   pathu   uncu   restu   p(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   ismountp   s
    
c             C   sh  |  j  d d ƒ }  t |  ƒ \ } }  x4 |  d d … d k rZ | d } |  d d … }  q' W|  j d ƒ } d } xÆ | t | ƒ k  r8| | d k rŸ | | =qs | | d k rñ | d k rñ | | d d	 k rñ | | d | d … =| d } qs | | d k r+| d k r+| | d d k r+| | =qs | d } qs W| rW| rW| j d ƒ n  | d j | ƒ S(
   u0   Normalize path, eliminating double slashes, etc.u   \u   /Ni   i    u   .u   ..u    (   u    u   ..(   u   replaceu
   splitdriveu   splitu   lenu   appendu   join(   u   pathu   prefixu   compsu   i(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   normpath{   s&    

00
c             C   s.   t  |  ƒ s$ t t j ƒ  |  ƒ }  n  t |  ƒ S(   u%   Return the absolute version of a path(   u   isabsu   joinu   osu   getcwdu   normpath(   u   path(    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   abspath•   s    F("   u   __doc__u   osu   statu   genericpathu   ntpathu
   expanduseru
   expandvarsu   isabsu   islinku
   splitdriveu   splitextu   splitu   __all__u   curdiru   pardiru   extsepu   sepu   altsepu   pathsepu   defpathu   devnullu   normcaseu   joinu   splituncu   basenameu   dirnameu   existsu   lexistsu   ismountu   normpathu   abspathu   realpathu   Falseu   supports_unicode_filenames(    (    (    u/   /opt/alt/python33/lib64/python3.3/os2emxpath.pyu   <module>   s:   
4