Sections
Timeline
View Tickets
New Ticket
Sub-Sections
Download
Unified Diff
Zip Archive
Metanav
Preferences
About Trac
Links
Slowchop Studios
Gerald Kaszuba
Advertisement

Changeset 64

Show
Ignore:
Timestamp:
06/07/08 08:46:57 (7 weeks ago)
Author:
gak
Message:

- Renamed pycallgraph-dot.py to pycg
- Version bump to 0.5.0
- Added more shebangs
- Change all file formats to unix (from dos)
- Minor PEP8 fixes
- scripts/syntax_check.py ensures the correct working directory

Location:
trunk
Files:
1 added
4 modified
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/pycallgraph.py

    r62 r64  
    2222""" 
    2323 
    24 __version__ = '0.4.2' 
     24__version__ = '0.5.0' 
    2525__author__ = 'Gerald Kaszuba' 
    2626 
     
    397397 
    398398    cache = dict() 
     399 
    399400    def wrapper(*rest): 
    400401        if rest not in cache: 
     
    404405    return wrapper 
    405406 
    406      
     407 
    407408settings = {} 
    408409graph_attributes = {} 
  • trunk/scripts/build_dist.sh

    r56 r64  
     1#!/bin/bash 
    12rm -fr build dist 
    23python setup.py clean 
     
    45python setup.py bdist_wininst 
    56cd 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/* 
     7scp * gakman.com:/var/html/slowchop.com/pycallgraph/download/ 
    98 
  • trunk/scripts/build_documentation.sh

    r47 r64  
     1#!/bin/bash 
    12epydoc --html -v --graph=classtree --no-frames --url=http://pycallgraph.slowchop.com/ --name=pycallgraph -o/home/httpd/html/slowchop.com/pycallgraph/doc/ pycallgraph.py 
    23 
  • trunk/scripts/syntax_check.py

    r35 r64  
     1#!/usr/bin/env python 
     2 
     3from os import path 
     4ROOT = path.abspath(path.dirname(__file__)) 
     5 
    16import os 
    27from glob import glob 
    38 
     9os.chdir(os.path.join(ROOT, '..')) 
     10 
    411for 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) 
    613 
    714# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: