MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / _IncrementOpenCount

Method _IncrementOpenCount

PySimpleGUI/PySimpleGUI.py:10169–10175  ·  view source on GitHub ↗

Not user callable! Increments the number of open windows Note - there is a bug where this count easily gets out of sync. Issue has been opened already. No ill effects

(self)

Source from the content-addressed store, hash-verified

10167
10168 @classmethod
10169 def _IncrementOpenCount(self):
10170 """
10171 Not user callable! Increments the number of open windows
10172 Note - there is a bug where this count easily gets out of sync. Issue has been opened already. No ill effects
10173 """
10174 self.NumOpenWindows += 1
10175 # print('+++++ INCREMENTING Num Open Windows = {} ---'.format(Window.NumOpenWindows))
10176
10177 @classmethod
10178 def _DecrementOpenCount(self):

Callers 3

_get_hidden_master_rootFunction · 0.80
StartupTKFunction · 0.80
CloseMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected