Changeset 64
- Timestamp:
- 06/07/08 08:46:57 (7 weeks ago)
- Location:
- trunk
- Files:
-
- 1 added
- 4 modified
- 1 moved
-
pycallgraph.py (modified) (3 diffs)
-
scripts/build_dist.sh (modified) (2 diffs)
-
scripts/build_documentation.sh (modified) (1 diff)
-
scripts/pep8.py (added)
-
scripts/pycg (moved) (moved from trunk/scripts/pycallgraph-dot.py)
-
scripts/syntax_check.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pycallgraph.py
r62 r64 22 22 """ 23 23 24 __version__ = '0. 4.2'24 __version__ = '0.5.0' 25 25 __author__ = 'Gerald Kaszuba' 26 26 … … 397 397 398 398 cache = dict() 399 399 400 def wrapper(*rest): 400 401 if rest not in cache: … … 404 405 return wrapper 405 406 406 407 407 408 settings = {} 408 409 graph_attributes = {} -
trunk/scripts/build_dist.sh
r56 r64 1 #!/bin/bash 1 2 rm -fr build dist 2 3 python setup.py clean … … 4 5 python setup.py bdist_wininst 5 6 cd dist 6 scp * gakman.com:/home/httpd/html/slowchop.com/pycallgraph/download/ 7 ssh gakman.com chgrp httpd /home/httpd/html/slowchop.com/pycallgraph/download/* 8 ssh gakman.com chmod a-wx,a+r /home/httpd/html/slowchop.com/pycallgraph/download/* 7 scp * gakman.com:/var/html/slowchop.com/pycallgraph/download/ 9 8 -
trunk/scripts/build_documentation.sh
r47 r64 1 #!/bin/bash 1 2 epydoc --html -v --graph=classtree --no-frames --url=http://pycallgraph.slowchop.com/ --name=pycallgraph -o/home/httpd/html/slowchop.com/pycallgraph/doc/ pycallgraph.py 2 3 -
trunk/scripts/syntax_check.py
r35 r64 1 #!/usr/bin/env python 2 3 from os import path 4 ROOT = path.abspath(path.dirname(__file__)) 5 1 6 import os 2 7 from glob import glob 3 8 9 os.chdir(os.path.join(ROOT, '..')) 10 4 11 for file in glob('*.py') + glob('examples/*py') + glob('scripts/*py'): 5 os.system(' pep8.py --repeat %s' % file)12 os.system('scripts/pep8.py --repeat %s' % file) 6 13 7 14 # vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: