Staging
v0.5.1
https://github.com/python/cpython
Revision a5beccf6bb046e26a7934d2520f2443e4d42fd91 authored by Moshe Zadka on 13 April 2001, 15:52:40 UTC, committed by Moshe Zadka on 13 April 2001, 15:52:40 UTC
1 parent 1a65473
Raw File
Tip revision: a5beccf6bb046e26a7934d2520f2443e4d42fd91 authored by Moshe Zadka on 13 April 2001, 15:52:40 UTC
Lib/xml/sax/xmlreader.py - import the exceptions this module can raise
Tip revision: a5beccf
Makefile
all:
		@echo Nothing to make in this directory.

clean:
		find . '(' -name '*.pyc' -o -name '*.fdc' \
			-o -name core -o -name '*~' \
			-o -name '[@,#]*' -o -name '*.old' \
			-o -name '*.orig' -o -name '*.rej' \
			-o -name '*.bak' ')' \
			-print -exec rm -f {} ';'

clobber:	clean
back to top