Staging
v0.5.1
https://github.com/python/cpython
Revision 415d0f5cd3b2bb95c4a4da2f6a43a186335ae1a1 authored by Antoine Pitrou on 05 August 2012, 12:53:49 UTC, committed by Antoine Pitrou on 05 August 2012, 12:53:49 UTC
2 parent s 4adc9a8 + 31096a9
Raw File
Tip revision: 415d0f5cd3b2bb95c4a4da2f6a43a186335ae1a1 authored by Antoine Pitrou on 05 August 2012, 12:53:49 UTC
Merge
Tip revision: 415d0f5
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