From ff56ce37973a2c3d2b652df138da7b49d41a63dd Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Fri, 3 Aug 2012 10:24:42 -0400 Subject: [PATCH] cc-4105: clarified comment --- python_apps/media-monitor2/media/monitor/listeners.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python_apps/media-monitor2/media/monitor/listeners.py b/python_apps/media-monitor2/media/monitor/listeners.py index bc24b897a..f129b7193 100644 --- a/python_apps/media-monitor2/media/monitor/listeners.py +++ b/python_apps/media-monitor2/media/monitor/listeners.py @@ -52,8 +52,7 @@ class FileMediator(object): for skip in what_to_skip: # standard nasty hack, too long to explain completely in comments but # the gist of it is: - # 1. python's scoping rules are shitty and unintuitive (no "true" - # lexical scoping) + # 1. python's scoping rules are sometimes strange. # 2. workaround is very similar to what you do in javascript when # you write stuff like (function (x,y) { console.log(x+y); })(2,4) # to be avoid clobbering peoples' namespace.