Staging
v0.5.1
https://github.com/python/cpython
Revision 67233bc4054f45fcd44ef2765684f07a349a8447 authored by Fred Drake on 26 September 2000, 16:40:27 UTC, committed by Fred Drake on 26 September 2000, 16:40:27 UTC
1 parent fa2e2c1
Raw File
Tip revision: 67233bc4054f45fcd44ef2765684f07a349a8447 authored by Fred Drake on 26 September 2000, 16:40:27 UTC
Fixed typo, description of changes to dbm module.
Tip revision: 67233bc
Makefile
all:
		@echo Nothing to make in this directory.

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

clobber:	clean
back to top