Staging
v0.5.1
https://github.com/python/cpython
Revision c679227e31245b0e8dec74a1f7cc77710541d985 authored by Serhiy Storchaka on 19 October 2013, 18:03:34 UTC, committed by Serhiy Storchaka on 19 October 2013, 18:03:34 UTC
1 parent 80ab130
Raw File
Tip revision: c679227e31245b0e8dec74a1f7cc77710541d985 authored by Serhiy Storchaka on 19 October 2013, 18:03:34 UTC
Issue #1772673: The type of `char*` arguments now changed to `const char*`.
Tip revision: c679227
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