Just went across internals of ABC collections.
Can anyone please explain what does this construct stand for:
def _f(): pass
FunctionType = type(_f)
del _f
I know I'm probably missing some basic concept(s), please advise where to start/look to understand this?