Steven D'Aprano wrote:
Jérôme Radix wrote:
Hello,

Defensive programming will force you to do things like :

import sys
if sys.version[0] == '2':


Really? Do you already do this?

if sys.version < '2.2':
    result = apply(func, arguments)
else:
    result = func(*arguments)


And if so, have you tested it in Python 1.5 to see what happens?

Sorry, that reads harsher than I intended. Please insert a wink and a smiley.



--
Steven
_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to