From f9a1228304685d4e16bbfafd09c7acf92eeeacc3 Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Wed, 10 Jan 2018 21:44:42 +0000 Subject: [PATCH] Add a TODO about private vars. --- ptvsd/ipcjson.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ptvsd/ipcjson.py b/ptvsd/ipcjson.py index b8e181cb..a3f88e66 100644 --- a/ptvsd/ipcjson.py +++ b/ptvsd/ipcjson.py @@ -230,6 +230,7 @@ class IpcChannel(object): import thread except ImportError: import _thread as thread + # TODO: switch to a single underscore for "private" variables. self.__seq = itertools.count() self.__exit = False self.__lock = thread.allocate_lock()