All public logs

Jump to navigation Jump to search

Combined display of all available logs of Traxel Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 04:38, 3 November 2023 RobertBushman talk contribs created page PythonObjectOriented (Created page with "Category:Python = Singleton = </syntaxhighlight lang="python" lines> import json from threading import Lock class SingletonMeta(type): _instances = {} _lock: Lock = Lock() def __call__(cls, *args, **kwargs): with cls._lock: if cls not in cls._instances: instance = super().__call__(*args, **kwargs) cls._instances[cls] = instance return cls._instances[cls] class DataManager(metaclass=Sin...")