Staging
v0.8.1
Revision c38c5da5d0ce35442e859d64e6cfa734688a470e authored by Barry Warsaw on 06 October 1997, 17:49:20 UTC, committed by Barry Warsaw on 06 October 1997, 17:49:20 UTC
__getitem__().  This method never raises an exception; if the key is
not in the dictionary, the second (optional) argument is returned.  If
the second argument is not provided and the key is missing, None is
returned.

mapp_methods: added "get" method.
1 parent 596db31
Raw File
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