[EMAIL PROTECTED] schrieb:
> This is like the previous one. Please check for sanity and approve for
> posting at python-dev.

This one is not sane. It's not possible to change the indexing of
objects on a per-module basis, as objects may cross module boundaries.

Suppose you have this code:

option base
import sys
print sys.path[1]

So should the be 0-based (because path is in module sys), or should
it be one-based (because the access occurs in a module that uses
1-indexing)?

Regards,
Martin
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to