Staging
v0.8.1
https://github.com/python/cpython
Revision ae9bc67e0e563008804253fabcc97b72ad6a251c authored by Fred Drake on 12 April 1998, 03:49:46 UTC, committed by Fred Drake on 12 April 1998, 03:49:46 UTC
1 parent 6250205
Raw File
Tip revision: ae9bc67e0e563008804253fabcc97b72ad6a251c authored by Fred Drake on 12 April 1998, 03:49:46 UTC
Don't append () to the name of an object attribute in the index.
Tip revision: ae9bc67
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