diff options
author | Tom Tromey <tromey@redhat.com> | 2013-05-20 20:34:11 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-05-20 20:34:11 +0000 |
commit | 72ff8829c136d4337f010bcf7e655a8f8797b55c (patch) | |
tree | de68591271c14fecd1a63db49cc6283e797419cb | |
parent | 02146ba51f96bbda66cef7da9cc6efa863a50328 (diff) | |
download | binutils-72ff8829c136d4337f010bcf7e655a8f8797b55c.zip binutils-72ff8829c136d4337f010bcf7e655a8f8797b55c.tar.gz binutils-72ff8829c136d4337f010bcf7e655a8f8797b55c.tar.bz2 |
* python/py-evts.c (gdbpy_initialize_py_events): Don't
incref the module.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/python/py-evts.c | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4dea044..ed139fd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2013-05-20 Tom Tromey <tromey@redhat.com> + * python/py-evts.c (gdbpy_initialize_py_events): Don't + incref the module. + +2013-05-20 Tom Tromey <tromey@redhat.com> + * python/python.c (gdbpy_run_events): Decref the result of PyObject_CallObject. diff --git a/gdb/python/py-evts.c b/gdb/python/py-evts.c index bb384e3..4828bda 100644 --- a/gdb/python/py-evts.c +++ b/gdb/python/py-evts.c @@ -81,9 +81,6 @@ gdbpy_initialize_py_events (void) if (add_new_registry (&gdb_py_events.new_objfile, "new_objfile") < 0) return -1; -#ifndef IS_PY3K - Py_INCREF (gdb_py_events.module); -#endif if (PyModule_AddObject (gdb_module, "events", (PyObject *) gdb_py_events.module) < 0) |