Staging
v0.5.1
https://github.com/python/cpython
Revision e935816164fb028d90072627a2dd9bd17bca969c authored by Tim Peters on 22 January 2001, 22:05:20 UTC, committed by Tim Peters on 22 January 2001, 22:05:20 UTC
1 parent da6daee
Raw File
Tip revision: e935816164fb028d90072627a2dd9bd17bca969c authored by Tim Peters on 22 January 2001, 22:05:20 UTC
Reorganize pickle/cPickle testing so the tests pass regardless of the order
Tip revision: e935816
Makefile
all:
		@echo Nothing to make in this directory.

clean:
		find . '(' -name '*.py[co]' -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