| commit | 28bc59f1169298470f7c80ed54810a330d68b3c8 | [log] [tgz] |
|---|---|---|
| author | Tim Peters <tim.peters@gmail.com> | Sun Sep 16 08:40:16 2001 +0000 |
| committer | Tim Peters <tim.peters@gmail.com> | Sun Sep 16 08:40:16 2001 +0000 |
| tree | 199d8aae3a0047088d9bd932716148d36264acce | |
| parent | a2e2dbe8cda41d5c612d41acad2fe5cfb841402e [diff] |
In a world with a growing number of subclassable types, replace
type(x) is T
tests with
isinstance(x, T)
Also got rid of a future-generators import, left over from code that
wasn't intended to get checked in.