From 04cdcb0feb369ac4c60e10ccdc139c57e8b52e62 Mon Sep 17 00:00:00 2001 From: Zearin Date: Fri, 7 Oct 2011 10:34:23 -0400 Subject: Removed leftovers from installing with pip. Oops! I noticed there was a bunch of extra crap left over from when I installed this module onto my own system. I thought it wouldn't have modified itself at the time (just the Python module library on my system), but I was wrong. Begone, useless cruft! --- doxygen/html/graph_8py_source.html | 169 ------------------------------------- 1 file changed, 169 deletions(-) delete mode 100644 doxygen/html/graph_8py_source.html (limited to 'doxygen/html/graph_8py_source.html') diff --git a/doxygen/html/graph_8py_source.html b/doxygen/html/graph_8py_source.html deleted file mode 100644 index ad0f318..0000000 --- a/doxygen/html/graph_8py_source.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - -Cmd2: /Users/amrogers/Developer/Projects/cmd2/docs/pycon2010/graph.py Source File - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - -
-
Cmd2 - -
- -
-
- - - - - -
-
- -
-
-
- -
-
-
-
graph.py
-
-
-Go to the documentation of this file.
00001 from turtle import *
-00002 pu()
-00003 goto(-400,-400)
-00004 
-00005 def label(txt):
-00006     write(txt, font=('Arial', 20, 'italic'))
-00007 hideturtle()
-00008 width(6)
-00009 
-00010 def line(len, _label):
-00011     start = pos()
-00012     pd()
-00013     forward(len)
-00014     pu()
-00015     forward(30)
-00016     pd()
-00017     label(_label)
-00018     pu()
-00019     goto(start)
-00020 
-00021 def tech(x, y, _label):
-00022     pu()
-00023     goto(x, y)
-00024     pd()
-00025     write(_label, font=('Arial', 40, 'bold'))
-00026     pu()
-00027     
-00028 line(600, "Easy to write")
-00029 left(90)
-00030 line(600, "Easy to use")
-00031 
-00032 tech(-360, 160, 'GUI')
-00033 tech(-390, 100, 'AJAX')
-00034 tech(-300, -10, 'webapp')
-00035 tech(190, -380, 'CLU')
-00036 tech(60, -320, 'TUI')
-00037 tech(100, -210, 'cmd')
-00038 tech(80, -80, 'cmd2')
-00039 
-00040 while True:
-00041     pass
-
-
- - - - - -- cgit v1.2.1