Staging
v0.8.1
Revision 43ba3545991691403d1b4ec1d04e66053c2ddf36 authored by Éric Araujo on 01 September 2011, 01:19:30 UTC, committed by Éric Araujo on 01 September 2011, 01:19:30 UTC
1 parent 4058211
Raw File
gdb_sample.py
# Sample script for use by test_gdb.py

def foo(a, b, c):
    bar(a, b, c)

def bar(a, b, c):
    baz(a, b, c)

def baz(*args):
    id(42)

foo(1, 2, 3)
back to top