-
This method exists because python < 3.0 still uses __getslice__
for builtin types. More...
This method exists because python < 3.0 still uses __getslice__
for builtin types. (See http://bugs.python.org/issue2041)
Overload self + other to preserve the type.
If i is a slice, make sure a QualifiedName is returned.
-
Return a copy of other with any prefix it shares with self removed. More...
Return a copy of other with any prefix it shares with self removed.
e.g. ('A', 'B', 'C', 'D').prune(('A', 'B', 'D')) -> ('C', 'D')