You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
4.1 KiB

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