CF0A3F308EF7113BBE124C9
  
   ˆÀÇ‚p!¾Å c    #! /usr/bin/env python
"Replace CRLF with LF in argument files.  Print names of changed files."

import sys, os

def main():
    for filename in sys.argv[1:]:
        if os.path.isdir(filename):
            print filename, "Directory!"
            continue
        data = open(filename, "rb").read()
        if '\0' in data:
            print filename, "Binary!"
            continue
        newdata = data.replace("\r\n", "\n")
        if newdata != data:
            print filename
            f = open(filename, "wb")
            f.write(newdata)
            f.close()

if __name__ == '__main__':
    main()
     !ˆÄÇ904¾Å ˆ    !ó
*“ïic           @   s8   d  d l  Z  d „  Z d „  Z e d k r4 e ƒ  n  d S(   iÿÿÿÿNc          C   s¡   t  j d }  i  } xG |  D]? } t | ƒ } | j | ƒ sH g  | | <n  | | j | ƒ q W| j ƒ  } | j ƒ  x' | D] } t | ƒ Gt | | ƒ GHqz Wd  S(   Ni   (	   t   syst   argvt	   getsuffixt   has_keyt   appendt   keyst   sortt   reprt   len(   t   filest   suffixest   filenamet   suffR   (    (    s*   /usr/lib64/python2.7/Tools/scripts/suff.pyt   main	   s    
c         C   sD   d } x7 t  t |  ƒ ƒ D]# } |  | d k r |  | } q q W| S(   Nt    t   .(   t   rangeR   (   R   R   t   i(    (    s*   /usr/lib64/python2.7/Tools/scripts/suff.pyR      s
    t   __main__(   R    R   R   t   __name__(    (    (    s*   /usr/lib64/python2.7/Tools/scripts/suff.pyt   <module>   s   		     #ˆÀÇƒ¯;¾Å û    ##! /usr/bin/env python

"""Print a list of files that are mentioned in CVS directories.

Usage: cvsfiles.py [-n file] [directory] ...

If the '-n file' option is given, only files under CVS that are newer
than the given file are printed; by default, all files under CVS are
printed.  As a special case, if a file does not exist, it is always
printed.
"""

import os
import sys
import stat
import getopt

cutofftime = 0

def main():
    try:
        opts, args = getopt.getopt(sys.argv[1:], "n:")
    except getopt.error, msg:
        print msg
        print __doc__,
        return 1
    global cutofftime
    newerfile = None
    for o, a in opts:
        if o == '-n':
            cutofftime = getmtime(a)
    if args:
        for arg in args:
            process(arg)
    else:
        process(".")

def process(dir):
    cvsdir = 0
    subdirs = []
    names = os.listdir(dir)
    for name in names:
        fullname = os.path.join(dir, name)
        if name == "CVS":
            cvsdir = fullname
        else:
            if os.path.isdir(fullname):
                if not os.path.islink(fullname):
                    subdirs.append(fullname)
    if cvsdir:
        entries = os.path.join(cvsdir, "Entries")
        for e in open(entries).readlines():
            words = e.split('/')
            if words[0] == '' and words[1:]:
                name = words[1]
                fullname = os.path.join(dir, name)
                if cutofftime and getmtime(fullname) <= cutofftime:
                    pass
                else:
                    print fullname
    for sub in subdirs:
        process(sub)

def getmtime(filename):
    try:
        st = os.stat(filename)
    except os.error:
        return 0
    return st[stat.ST_MTIME]

if __name__ == '__main__':
    main()
  "   %ˆl–Ðz¾”je¶… ² ]¸\ ”Å£Èƒq÷[¿Æ ?    %# -*- coding: utf-8 -*-
"""upload_docs

Implements a Distutils 'upload_docs' subcommand (upload documentation to
PyPI's pythonhosted.org).
"""

import os
import socket
import zipfile
import tempfile
import sys
import shutil

from base64 import standard_b64encode
from pkg_resources import iter_entry_points

from distutils import log
from distutils.errors import DistutilsOptionError

try:
    from distutils.command.upload import upload
except ImportError:
    from setuptools.command.upload import upload

from setuptools.compat import httplib, urlparse, unicode, iteritems

_IS_PYTHON3 = sys.version > '3'

if _IS_PYTHON3:
    er