Coder Social home page Coder Social logo

Comments (5)

gak avatar gak commented on June 24, 2024

Author: anonymous
Hi,

you can achieve this by the following:

change:

execfile(args[0])

to:

saveargs = sys.argv # save sys.argv
sys.argv = [args[0]] + args[2:] # store custom sys.argv
execfile(args[0])
sys.argv = saveargs # restore sys.argv in case it is needed later...

in scripts/pycallgraph-dot.py (version 0.4.1).

Then you can supply arguments to the script after stopping argument processing with '--'.

Example:
pycallgraph-dot.py which pycallgraph-dot.py /tmp/test.png -- -h

The -h option is then passed to the exec'd version of pycallgraph-dot.py.

Best,
Staal

from pycallgraph.

gak avatar gak commented on June 24, 2024

Author: anonymous
Sorry about the formatting in the above comment. Forgot to preview...
So, the hack (it is a hack) should have looked like this:

Change lines 109-110 in pycallgraph-dot.py (version 0.4.1):

{{{
execfile(args[0])
pycallgraph.make_dot_graph(args[1], options.format, options.tool)
}}}

to

{{{
_my_saveargs = sys.argv
sys.argv = [args[0]] + args[2:]
_my_imagefile = args[1]
_my_options_format = options.format
_my_options_tool = options.tool
execfile(args[0])
sys.argv = _my_saveargs
pycallgraph.make_dot_graph(_my_imagefile, _my_options_format, _my_options_tool)
}}}

For this to work, we hope that the code in args[0] does not alter any globals that are needed by pycallgraph, in particular the globals that start with 'my'.

Best,
Staal

from pycallgraph.

gak avatar gak commented on June 24, 2024

Author: gak

from pycallgraph.

gak avatar gak commented on June 24, 2024

Author: gak

from pycallgraph.

gak avatar gak commented on June 24, 2024

Author: gak

from pycallgraph.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.