stanley-king пре 2 година
родитељ
комит
c61c472f65
1 измењених фајлова са 6 додато и 0 уклоњено
  1. 6 0
      plot/testPlot.py

+ 6 - 0
plot/testPlot.py

@@ -90,12 +90,18 @@ class MyTestCase(unittest.TestCase):
         x = None
         len = len(x)
         print(len)
+
     def test_set(self):
         x = set([(4,50),(4,100)])
         y = set([(4,50),(5,100)])
         z = x | y
         print(z)
 
+    def test_env(self):
+        import os
+        x = os.getenv("PYCHARM_DISPLAY_PORT", "-1")
+        print(x)
+
 
 
 if __name__ == '__main__':