Should I start converting/removing uses of the types module where possible? So where we have: assert type(lineno) is types.IntType assert type(lineno) in (types.IntType, types.LongType) would become: assert type(lineno) is int assert type(lineno) in (int, long) or assert isinstance(lineno, int) assert isinstance(lineno, (int, long)) Preferences? Neal
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4