diff options
author | Georg Brandl <georg@python.org> | 2010-12-30 22:11:50 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-12-30 22:11:50 +0000 |
commit | 856898b3958626d2400e59b53dc134283addc988 (patch) | |
tree | 2018f1418921ad20ef0fce86f9e28df09c3e5567 /Tools/demo/sortvisu.py | |
parent | a3fe8e0b9face74e34b938dd657c4048d5f0dadf (diff) | |
download | cpython-856898b3958626d2400e59b53dc134283addc988.tar.gz cpython-856898b3958626d2400e59b53dc134283addc988.zip |
Harmonize docstrings. Move redemo from Tools/scripts to Tools/demo. Add a README file to Tools/demo.
Diffstat (limited to 'Tools/demo/sortvisu.py')
-rwxr-xr-x[-rw-r--r--] | Tools/demo/sortvisu.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Tools/demo/sortvisu.py b/Tools/demo/sortvisu.py index 417312181b0..8447bc757e6 100644..100755 --- a/Tools/demo/sortvisu.py +++ b/Tools/demo/sortvisu.py @@ -1,6 +1,7 @@ -#! /usr/bin/env python3 +#!/usr/bin/env python3 -"""Sorting algorithms visualizer using Tkinter. +""" +Sorting algorithms visualizer using Tkinter. This module is comprised of three ``components'': @@ -15,13 +16,11 @@ to its annotation methods; - and a ``driver'' class which can be used as a Grail applet or as a stand-alone application. - """ from tkinter import * import random - XGRID = 10 YGRID = 10 WIDTH = 6 |