• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

2to3D22-Nov-2023101 63

READMED22-Nov-20233.7 KiB7067

analyze_dxp.pyD22-Nov-20234.2 KiB13097

byext.pyD22-Nov-20234 KiB132117

byteyears.pyD22-Nov-20231.7 KiB6241

checkappend.pyD22-Nov-20234.7 KiB168131

checkpyc.pyD22-Nov-20232 KiB6759

classfix.pyD22-Nov-20236 KiB191121

cleanfuture.pyD22-Nov-20238.6 KiB277212

combinerefs.pyD22-Nov-20234.4 KiB12890

copytime.pyD22-Nov-2023690 2720

crlf.pyD22-Nov-2023634 2419

cvsfiles.pyD22-Nov-20231.8 KiB7362

db2pickle.pyD22-Nov-20233.6 KiB136118

diff.pyD22-Nov-20232 KiB5038

dutree.docD22-Nov-20232.2 KiB5545

dutree.pyD22-Nov-20231.6 KiB6150

eptags.pyD22-Nov-20231.5 KiB5747

find_recursionlimit.pyD22-Nov-20233.5 KiB11892

finddiv.pyD22-Nov-20232.5 KiB9077

findlinksto.pyD22-Nov-20231.1 KiB4434

findnocoding.pyD22-Nov-20232.7 KiB10575

fixcid.pyD22-Nov-202310.1 KiB315232

fixdiv.pyD22-Nov-202313.9 KiB381335

fixheader.pyD22-Nov-20231.2 KiB5042

fixnotice.pyD22-Nov-20233.1 KiB11491

fixps.pyD22-Nov-2023926 3425

ftpmirror.pyD22-Nov-202312.9 KiB401362

google.pyD22-Nov-2023543 2419

gprof2html.pyD22-Nov-20232.2 KiB8071

h2py.pyD22-Nov-20235.8 KiB176135

hotshotmain.pyD22-Nov-20231.5 KiB5638

idleD22-Nov-2023100 63

ifdef.pyD22-Nov-20233.7 KiB11380

lfcr.pyD22-Nov-2023643 2519

linktree.pyD22-Nov-20232.4 KiB8163

lll.pyD22-Nov-2023775 2919

logmerge.pyD22-Nov-20235.6 KiB186164

mailerdaemon.pyD22-Nov-20238 KiB238197

md5sum.pyD22-Nov-20232.4 KiB9179

methfix.pyD22-Nov-20235.5 KiB172120

mkreal.pyD22-Nov-20231.7 KiB6752

ndiff.pyD22-Nov-20233.8 KiB13492

nm2def.pyD22-Nov-20232.5 KiB10479

objgraph.pyD22-Nov-20236.1 KiB216147

parseentities.pyD22-Nov-20231.7 KiB6553

patchcheck.pyD22-Nov-20234.8 KiB159123

pathfix.pyD22-Nov-20234.4 KiB150112

pdeps.pyD22-Nov-20234 KiB16896

pickle2db.pyD22-Nov-20234 KiB148129

pindent.pyD22-Nov-202318 KiB543337

ptags.pyD22-Nov-20231.2 KiB5435

pydocD22-Nov-202384 63

pydocgui.pywD22-Nov-2023222 86

pysource.pyD22-Nov-20233.9 KiB13195

redemo.pyD22-Nov-20235.8 KiB172142

reindent-rst.pyD22-Nov-2023292 156

reindent.pyD22-Nov-202310.5 KiB305230

rgrep.pyD22-Nov-20231.5 KiB6557

serve.pyD22-Nov-20231.2 KiB3630

setup.pyD22-Nov-2023441 2119

suff.pyD22-Nov-2023652 3121

svneol.pyD22-Nov-20233 KiB9264

texcheck.pyD22-Nov-20239.3 KiB234189

texi2html.pyD22-Nov-202370.2 KiB2,0791,558

treesync.pyD22-Nov-20235.8 KiB206181

untabify.pyD22-Nov-20231.2 KiB5345

which.pyD22-Nov-20231.7 KiB6146

win_add2path.pyD22-Nov-20231.6 KiB5847

xxci.pyD22-Nov-20232.8 KiB11793

README

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