Skip to content

v0.2.0

Latest

Choose a tag to compare

@gottadiveintopython gottadiveintopython released this 24 May 11:07
v0.2.0

Migrating from 0.1.2

import asynctkinter2 as atk

# 0.1.2
atk.sleep(widget, 1000)
atk.run_in_thread(widget, ...)
atk.run_in_executor(executor, widget, ...)

# 0.2.0
atk.sleep(widget.after, 1000)
atk.run_in_thread(widget.after, ...)
atk.run_in_executor(executor, widget.after, ...)

Full Changelog: v0.1.2...v0.2.0