Staging
v0.5.1
https://github.com/python/cpython
Revision 732151473b9528302518c54a48e5767bc7746200 authored by Jack Jansen on 09 October 1995, 23:09:23 UTC, committed by Jack Jansen on 09 October 1995, 23:09:23 UTC
1 parent a1db48b
Raw File
Tip revision: 732151473b9528302518c54a48e5767bc7746200 authored by Jack Jansen on 09 October 1995, 23:09:23 UTC
Fixed bug in optional argument error checking (and generated all
Tip revision: 7321514
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