Staging
v0.5.1
https://github.com/python/cpython
Revision e0e59829e006ddf670d0cbffa9b9d00b71227d70 authored by Guido van Rossum on 14 October 1998, 20:38:13 UTC, committed by Guido van Rossum on 14 October 1998, 20:38:13 UTC
1 parent b0e5718
Raw File
Tip revision: e0e59829e006ddf670d0cbffa9b9d00b71227d70 authored by Guido van Rossum on 14 October 1998, 20:38:13 UTC
When errno is zero, avoid calling strerror() and use "Error" for the
Tip revision: e0e5982
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