#### Filter, map and zip functions that return generators instead of iterators. Dropped in Pyhon 3, because filter, map and zip functions started returning generators.
Introspection and Metaprograming
--------------------------------
@ -854,7 +851,7 @@ False
### Parameters
```python
>>> from inspect import signature
>>> sig = signature(bla)
>>> sig = signature(<function>)
>>> len(sig.parameters)
3
```
@ -862,7 +859,7 @@ False
### Type
**Type is the root class. If only passed the object it returns it's type. Otherwise it creates a new class (and not the instance!):**