- exclude test_http_cookies when running selftests, due to hang seen on
http://koji.fedoraproject.org/koji/taskinfo?taskID=2088463 (cancelled after 11 hours) - update python-gdb.py from v5 to py3k version submitted upstream
This commit is contained in:
parent
80325d9c24
commit
bbd09cc947
@ -19,9 +19,10 @@ giving file/line information and the state of local variables
|
||||
In particular, given a gdb.Value corresponding to a PyObject* in the inferior
|
||||
process, we can generate a "proxy value" within the gdb process. For example,
|
||||
given a PyObject* in the inferior process that is in fact a PyListObject*
|
||||
holding three PyObject* that turn out to be PyStringObject* instances, we can
|
||||
generate a proxy value within the gdb process that is a list of strings:
|
||||
["foo", "bar", "baz"]
|
||||
holding three PyObject* that turn out to be PyBytesObject* instances, we can
|
||||
generate a proxy value within the gdb process that is a list of bytes
|
||||
instances:
|
||||
[b"foo", b"bar", b"baz"]
|
||||
|
||||
Doing so can be expensive for complicated graphs of objects, and could take
|
||||
some time, so we also have a "write_repr" method that writes a representation
|
||||
@ -39,7 +40,7 @@ the type names are known to the debugger
|
||||
|
||||
The module also extends gdb with some python-specific commands.
|
||||
'''
|
||||
|
||||
from __future__ import with_statement
|
||||
import gdb
|
||||
|
||||
# Look up the gdb.Type for some standard types:
|
||||
@ -57,7 +58,7 @@ Py_TPFLAGS_INT_SUBCLASS = (1L << 23)
|
||||
Py_TPFLAGS_LONG_SUBCLASS = (1L << 24)
|
||||
Py_TPFLAGS_LIST_SUBCLASS = (1L << 25)
|
||||
Py_TPFLAGS_TUPLE_SUBCLASS = (1L << 26)
|
||||
Py_TPFLAGS_STRING_SUBCLASS = (1L << 27)
|
||||
Py_TPFLAGS_BYTES_SUBCLASS = (1L << 27)
|
||||
Py_TPFLAGS_UNICODE_SUBCLASS = (1L << 28)
|
||||
Py_TPFLAGS_DICT_SUBCLASS = (1L << 29)
|
||||
Py_TPFLAGS_BASE_EXC_SUBCLASS = (1L << 30)
|
||||
@ -108,7 +109,7 @@ class TruncatedStringIO(object):
|
||||
class PyObjectPtr(object):
|
||||
"""
|
||||
Class wrapping a gdb.Value that's a either a (PyObject*) within the
|
||||
inferior process, or some subclass pointer e.g. (PyStringObject*)
|
||||
inferior process, or some subclass pointer e.g. (PyBytesObject*)
|
||||
|
||||
There will be a subclass for every refined PyObject type that we care
|
||||
about.
|
||||
@ -120,7 +121,7 @@ class PyObjectPtr(object):
|
||||
|
||||
def __init__(self, gdbval, cast_to=None):
|
||||
if cast_to:
|
||||
self._gdbval = gdbval.cast(cast_to)
|
||||
self._gdbval = gdbval.cast(cast_to)
|
||||
else:
|
||||
self._gdbval = gdbval
|
||||
|
||||
@ -148,12 +149,8 @@ class PyObjectPtr(object):
|
||||
return pyo_ptr.dereference()[name]
|
||||
|
||||
if name == 'ob_size':
|
||||
try:
|
||||
# Python 2:
|
||||
return self._gdbval.dereference()[name]
|
||||
except RuntimeError:
|
||||
# Python 3:
|
||||
return self._gdbval.dereference()['ob_base'][name]
|
||||
pyo_ptr = self._gdbval.cast(PyVarObjectPtr.get_gdb_type())
|
||||
return pyo_ptr.dereference()[name]
|
||||
|
||||
# General case: look it up inside the object:
|
||||
return self._gdbval.dereference()[name]
|
||||
@ -318,8 +315,8 @@ class PyObjectPtr(object):
|
||||
return PyListObjectPtr
|
||||
if tp_flags & Py_TPFLAGS_TUPLE_SUBCLASS:
|
||||
return PyTupleObjectPtr
|
||||
if tp_flags & Py_TPFLAGS_STRING_SUBCLASS:
|
||||
return PyStringObjectPtr
|
||||
if tp_flags & Py_TPFLAGS_BYTES_SUBCLASS:
|
||||
return PyBytesObjectPtr
|
||||
if tp_flags & Py_TPFLAGS_UNICODE_SUBCLASS:
|
||||
return PyUnicodeObjectPtr
|
||||
if tp_flags & Py_TPFLAGS_DICT_SUBCLASS:
|
||||
@ -355,6 +352,8 @@ class PyObjectPtr(object):
|
||||
def as_address(self):
|
||||
return long(self._gdbval)
|
||||
|
||||
class PyVarObjectPtr(PyObjectPtr):
|
||||
_typename = 'PyVarObject'
|
||||
|
||||
class ProxyAlreadyVisited(object):
|
||||
'''
|
||||
@ -515,20 +514,6 @@ class PyBaseExceptionObjectPtr(PyObjectPtr):
|
||||
out.write(self.safe_tp_name())
|
||||
self.write_field_repr('args', out, visited)
|
||||
|
||||
class PyBoolObjectPtr(PyObjectPtr):
|
||||
"""
|
||||
Class wrapping a gdb.Value that's a PyBoolObject* i.e. one of the two
|
||||
<bool> instances (Py_True/Py_False) within the process being debugged.
|
||||
"""
|
||||
_typename = 'PyBoolObject'
|
||||
|
||||
def proxyval(self, visited):
|
||||
if int_from_int(self.field('ob_ival')):
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
|
||||
|
||||
class PyClassObjectPtr(PyObjectPtr):
|
||||
"""
|
||||
Class wrapping a gdb.Value that's a PyClassObject* i.e. a <classobj>
|
||||
@ -592,7 +577,7 @@ class PyCodeObjectPtr(PyObjectPtr):
|
||||
|
||||
# Initialize lineno to co_firstlineno as per PyCode_Addr2Line
|
||||
# not 0, as lnotab_notes.txt has it:
|
||||
lineno = int_from_int(self.field('co_firstlineno'))
|
||||
lineno = int_from_int(self.field('co_firstlineno'))
|
||||
|
||||
addr = 0
|
||||
for addr_incr, line_incr in zip(co_lnotab[::2], co_lnotab[1::2]):
|
||||
@ -630,9 +615,9 @@ class PyDictObjectPtr(PyObjectPtr):
|
||||
|
||||
result = {}
|
||||
for pyop_key, pyop_value in self.iteritems():
|
||||
proxy_key = pyop_key.proxyval(visited)
|
||||
proxy_value = pyop_value.proxyval(visited)
|
||||
result[proxy_key] = proxy_value
|
||||
proxy_key = pyop_key.proxyval(visited)
|
||||
proxy_value = pyop_value.proxyval(visited)
|
||||
result[proxy_key] = proxy_value
|
||||
return result
|
||||
|
||||
def write_repr(self, out, visited):
|
||||
@ -691,13 +676,6 @@ class PyInstanceObjectPtr(PyObjectPtr):
|
||||
_write_instance_repr(out, visited,
|
||||
cl_name, pyop_in_dict, self.as_address())
|
||||
|
||||
class PyIntObjectPtr(PyObjectPtr):
|
||||
_typename = 'PyIntObject'
|
||||
|
||||
def proxyval(self, visited):
|
||||
result = int_from_int(self.field('ob_ival'))
|
||||
return result
|
||||
|
||||
class PyListObjectPtr(PyObjectPtr):
|
||||
_typename = 'PyListObject'
|
||||
|
||||
@ -770,6 +748,16 @@ class PyLongObjectPtr(PyObjectPtr):
|
||||
result = -result
|
||||
return result
|
||||
|
||||
class PyBoolObjectPtr(PyLongObjectPtr):
|
||||
"""
|
||||
Class wrapping a gdb.Value that's a PyBoolObject* i.e. one of the two
|
||||
<bool> instances (Py_True/Py_False) within the process being debugged.
|
||||
"""
|
||||
def proxyval(self, visited):
|
||||
if PyLongObjectPtr.proxyval(self, visited):
|
||||
return True
|
||||
else:
|
||||
return False
|
||||
|
||||
class PyNoneStructPtr(PyObjectPtr):
|
||||
"""
|
||||
@ -894,9 +882,9 @@ class PyFrameObjectPtr(PyObjectPtr):
|
||||
return
|
||||
out.write('Frame 0x%x, for file %s, line %i, in %s ('
|
||||
% (self.as_address(),
|
||||
self.co_filename,
|
||||
self.co_filename.proxyval(visited),
|
||||
self.current_line_num(),
|
||||
self.co_name))
|
||||
self.co_name.proxyval(visited)))
|
||||
first = True
|
||||
for pyop_name, pyop_value in self.iter_locals():
|
||||
if not first:
|
||||
@ -958,8 +946,8 @@ class PySetObjectPtr(PyObjectPtr):
|
||||
out.write('])')
|
||||
|
||||
|
||||
class PyStringObjectPtr(PyObjectPtr):
|
||||
_typename = 'PyStringObject'
|
||||
class PyBytesObjectPtr(PyObjectPtr):
|
||||
_typename = 'PyBytesObject'
|
||||
|
||||
def __str__(self):
|
||||
field_ob_size = self.field('ob_size')
|
||||
@ -1065,7 +1053,7 @@ def pretty_printer_lookup(gdbval):
|
||||
if type.code == gdb.TYPE_CODE_PTR:
|
||||
type = type.target().unqualified()
|
||||
t = str(type)
|
||||
if t in ("PyObject", "PyFrameObject"):
|
||||
if t in ("PyObject", "PyFrameObject", "PyUnicodeObject"):
|
||||
return PyObjectPtrPrinter(gdbval)
|
||||
|
||||
"""
|
||||
|
23
python3.spec
23
python3.spec
@ -39,7 +39,7 @@
|
||||
Summary: Version 3 of the Python programming language aka Python 3000
|
||||
Name: python3
|
||||
Version: %{pybasever}.2
|
||||
Release: 4%{?dist}
|
||||
Release: 5%{?dist}
|
||||
License: Python
|
||||
Group: Development/Languages
|
||||
Source: http://python.org/ftp/python/%{version}/Python-%{version}.tar.bz2
|
||||
@ -72,9 +72,12 @@ Source3: macros.pybytecompile
|
||||
# See https://fedoraproject.org/wiki/Features/EasierPythonDebugging for more
|
||||
# information
|
||||
#
|
||||
# Downloaded from:
|
||||
# http://bugs.python.org/issue8032
|
||||
# This is Tools/gdb/libpython.py from v5 of the patch
|
||||
# This is the version from
|
||||
# http://bugs.python.org/issue8380
|
||||
#
|
||||
# This is Tools/gdb/libpython.py from:
|
||||
# http://bugs.python.org/file16902/port-gdb7-hooks-to-py3k.patch
|
||||
# when applied to r80008 of the py3k branch
|
||||
Source4: python-gdb.py
|
||||
|
||||
# Systemtap tapset to make it easier to use the systemtap static probes
|
||||
@ -446,9 +449,9 @@ sed \
|
||||
%check
|
||||
# Run the upstream test suite, using the "runtests.sh" harness from the upstream
|
||||
# tarball.
|
||||
# I'm seeing occasional hangs in "test_httplib" when running the test suite inside
|
||||
# Koji. For that reason I exclude that one.
|
||||
LD_LIBRARY_PATH=$(pwd) ./runtests.sh -x test_httplib
|
||||
# I'm seeing occasional hangs in some http tests when running the test suite
|
||||
# inside Koji. For that reason I exclude them
|
||||
LD_LIBRARY_PATH=$(pwd) ./runtests.sh -x test_httplib test_http_cookies
|
||||
|
||||
# Note that we're running the tests using the version of the code in the builddir,
|
||||
# not in the buildroot.
|
||||
@ -695,6 +698,12 @@ rm -fr %{buildroot}
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Apr 13 2010 David Malcolm <dmalcolm@redhat.com> - 3.1.2-5
|
||||
- exclude test_http_cookies when running selftests, due to hang seen on
|
||||
http://koji.fedoraproject.org/koji/taskinfo?taskID=2088463 (cancelled after
|
||||
11 hours)
|
||||
- update python-gdb.py from v5 to py3k version submitted upstream
|
||||
|
||||
* Wed Mar 31 2010 David Malcolm <dmalcolm@redhat.com> - 3.1.2-4
|
||||
- update python-gdb.py from v4 to v5 (improving performance and stability,
|
||||
adding commands)
|
||||
|
Loading…
Reference in New Issue
Block a user