cosmologicon / pywat

Python wats

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Scope

coleifer opened this issue · comments

Here's one that blew my mind (and my co-workers):

def incrementer():
    i = 0
    def increment():
        i = i + 1
        return i
    return increment

Looks OK. Let's try it.

>>> i = incrementer()
>>> i()
---------------------------------------------------------------------------
UnboundLocalError                         Traceback (most recent call last)
<ipython-input-3-fa1b63ea38ec> in <module>()
----> 1 i()

<ipython-input-1-482b5332e967> in increment()
      2         i = 0
      3         def increment():
----> 4                 i = i + 1
      5                 return i
      6         return increment

UnboundLocalError: local variable 'i' referenced before assignment

Fuck, even JavaScript got this one right!