Home | History | Annotate | only in /external/python/cpython2/Tools/scripts
Up to higher level directory
NameDateSize
2to321-Aug-201896
analyze_dxp.py21-Aug-20184.1K
byext.py21-Aug-20183.9K
byteyears.py21-Aug-20181.6K
checkappend.py21-Aug-20184.5K
checkpip.py21-Aug-2018758
checkpyc.py21-Aug-20182K
classfix.py21-Aug-20185.8K
cleanfuture.py21-Aug-20188.4K
combinerefs.py21-Aug-20184.3K
copytime.py21-Aug-2018664
crlf.py21-Aug-2018611
cvsfiles.py21-Aug-20181.7K
db2pickle.py21-Aug-20183.5K
diff.py21-Aug-20182K
dutree.doc21-Aug-20182.2K
dutree.py21-Aug-20181.6K
eptags.py21-Aug-20181.4K
find_recursionlimit.py21-Aug-20183.4K
finddiv.py21-Aug-20182.5K
findlinksto.py21-Aug-20181K
findnocoding.py21-Aug-20182.7K
fixcid.py21-Aug-20189.8K
fixdiv.py21-Aug-201813.5K
fixheader.py21-Aug-20181.2K
fixnotice.py21-Aug-20183K
fixps.py21-Aug-2018893
google.py21-Aug-2018520
gprof2html.py21-Aug-20182.1K
h2py.py21-Aug-20185.8K
hotshotmain.py21-Aug-20181.4K
idle21-Aug-201895
ifdef.py21-Aug-20183.6K
lfcr.py21-Aug-2018619
linktree.py21-Aug-20182.4K
lll.py21-Aug-2018747
logmerge.py21-Aug-20185.4K
mailerdaemon.py21-Aug-20187.8K
md5sum.py21-Aug-20182.3K
methfix.py21-Aug-20185.3K
mkreal.py21-Aug-20181.6K
ndiff.py21-Aug-20183.7K
nm2def.py21-Aug-20182.4K
objgraph.py21-Aug-20185.9K
parseentities.py21-Aug-20181.7K
patchcheck.py21-Aug-20185.5K
pathfix.py21-Aug-20184.2K
pdeps.py21-Aug-20183.8K
pickle2db.py21-Aug-20183.8K
pindent.py21-Aug-201816.8K
ptags.py21-Aug-20181.2K
pydoc21-Aug-201879
pydocgui.pyw21-Aug-2018215
pysource.py21-Aug-20183.8K
README21-Aug-20183.7K
redemo.py21-Aug-20185.7K
reindent-rst.py21-Aug-2018278
reindent.py21-Aug-201810.6K
rgrep.py21-Aug-20181.5K
serve.py21-Aug-20181.1K
setup.py21-Aug-2018421
suff.py21-Aug-2018622
svneol.py21-Aug-20182.9K
texcheck.py21-Aug-20189K
texi2html.py21-Aug-201868.2K
treesync.py21-Aug-20185.6K
untabify.py21-Aug-20181.2K
which.py21-Aug-20181.6K
win_add2path.py21-Aug-20181.6K
xxci.py21-Aug-20182.7K

README

      1 This directory contains a collection of executable Python scripts that
      2 are useful while building, extending or managing Python.  Some (e.g.,
      3 dutree or lll) are also generally useful UNIX tools.
      4 
      5 See also the Demo/scripts directory!
      6 
      7 analyze_dxp.py		Analyzes the result of sys.getdxp()
      8 byext.py		Print lines/words/chars stats of files by extension
      9 byteyears.py		Print product of a file's size and age
     10 checkappend.py		Search for multi-argument .append() calls
     11 checkpyc.py		Check presence and validity of ".pyc" files
     12 classfix.py		Convert old class syntax to new
     13 cleanfuture.py		Fix reduntant Python __future__ statements
     14 combinerefs.py		A helper for analyzing PYTHONDUMPREFS output.
     15 copytime.py		Copy one file's atime and mtime to another
     16 crlf.py			Change CRLF line endings to LF (Windows to Unix)
     17 cvsfiles.py		Print a list of files that are under CVS
     18 db2pickle.py		Dump a database file to a pickle
     19 diff.py			Print file diffs in context, unified, or ndiff formats
     20 dutree.py		Format du(1) output as a tree sorted by size
     21 eptags.py		Create Emacs TAGS file for Python modules
     22 find_recursionlimit.py  Find the maximum recursion limit on this machine 
     23 finddiv.py		A grep-like tool that looks for division operators
     24 findlinksto.py		Recursively find symbolic links to a given path prefix
     25 findnocoding.py		Find source files which need an encoding declaration
     26 fixcid.py		Massive identifier substitution on C source files
     27 fixdiv.py		Tool to fix division operators.
     28 fixheader.py		Add some cpp magic to a C include file
     29 fixnotice.py		Fix the copyright notice in source files
     30 fixps.py		Fix Python scripts' first line (if #!)
     31 ftpmirror.py		FTP mirror script
     32 google.py		Open a webbrowser with Google
     33 gprof2html.py		Transform gprof(1) output into useful HTML
     34 h2py.py			Translate #define's into Python assignments
     35 hotshotmain.py		Main program to run script under control of hotshot
     36 idle			Main program to start IDLE
     37 ifdef.py		Remove #if(n)def groups from C sources
     38 lfcr.py			Change LF line endings to CRLF (Unix to Windows)
     39 linktree.py		Make a copy of a tree with links to original files
     40 lll.py			Find and list symbolic links in current directory
     41 logmerge.py		Consolidate CVS/RCS logs read from stdin
     42 mailerdaemon.py		parse error messages from mailer daemons (Sjoerd&Jack)
     43 md5sum.py		Print MD5 checksums of argument files.
     44 methfix.py		Fix old method syntax def f(self, (a1, ..., aN)):
     45 mkreal.py		Turn a symbolic link into a real file or directory
     46 ndiff.py		Intelligent diff between text files (Tim Peters)
     47 nm2def.py		Create a template for PC/python_nt.def (Marc Lemburg)
     48 objgraph.py		Print object graph from nm output on a library
     49 parseentities.py	Utility for parsing HTML entity definitions
     50 pathfix.py		Change #!/usr/local/bin/python into something else
     51 pdeps.py		Print dependencies between Python modules
     52 pickle2db.py		Load a pickle generated by db2pickle.py to a database
     53 pindent.py		Indent Python code, giving block-closing comments
     54 ptags.py		Create vi tags file for Python modules
     55 pydoc			Python documentation browser.
     56 pysource.py		Find Python source files
     57 redemo.py		Basic regular expression demonstration facility
     58 reindent.py		Change .py files to use 4-space indents.
     59 rgrep.py		Reverse grep through a file (useful for big logfiles)
     60 serve.py		Small wsgiref-based web server, used in make serve in Doc
     61 setup.py		Install all scripts listed here
     62 suff.py			Sort a list of files by suffix
     63 svneol.py		Sets svn:eol-style on all files in directory
     64 texcheck.py             Validate Python LaTeX formatting (Raymond Hettinger)
     65 texi2html.py		Convert GNU texinfo files into HTML
     66 treesync.py		Synchronize source trees (very ideosyncratic)
     67 untabify.py		Replace tabs with spaces in argument files
     68 which.py		Find a program in $PATH
     69 xxci.py			Wrapper for rcsdiff and ci
     70