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
  • 16:29, 10 November 2023 RobertBushman talk contribs created page PythonQuickies (Created page with "Category:Python = buffering = Fix CLI buffering in Python with: <pre> $ python -u foo.py | tee mylog.log </pre> "-u" means unbuffered, or something = Decorators = <syntaxhighlight lang="python" line> def my_decorator(func): def wrapper(*args, **kwargs): print("Something is happening before the function is called.") func(*args, **kwargs) print("Something is happening after the function is called.") return wrapper @my_decorator def sa...")