diff options
author | Yit Phang Khoo <khooyp@sourceware.org> | 2012-09-13 21:49:32 +0000 |
---|---|---|
committer | Yit Phang Khoo <khooyp@sourceware.org> | 2012-09-13 21:49:32 +0000 |
commit | b9516fa158d68eedaa9e2191e38e7a1acfcfee77 (patch) | |
tree | 926b28e504ad9bd54ef5159de82f25fac6244401 /gdb/ChangeLog | |
parent | 121c73f33ac3a687cd7fba2b6711c308f715e44a (diff) | |
download | gdb-b9516fa158d68eedaa9e2191e38e7a1acfcfee77.zip gdb-b9516fa158d68eedaa9e2191e38e7a1acfcfee77.tar.gz gdb-b9516fa158d68eedaa9e2191e38e7a1acfcfee77.tar.bz2 |
Refactor Python "gdb" module into a proper Python package, by introducing
a new "_gdb" module for code implemented in C, and using reload/__import__
instead of exec.
gdb/
* python/lib/gdb/__init__.py: Import * from _gdb.
(GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
prompt_hook, sys.argv): Moved from finish_python_initialization.
(pretty_printers, PYTHONDIR): Moved from _initialize_python.
(packages, auto_load_packages): New list and function replacing
module_dict and auto-loading code, using __file__ instead of
gdb.PYTHONDIR and reload/__import__ instead of exec.
(GdbSetPythonDirectory): Replacing function of the same name
from finish_python_initialization, using reload/__import__ instead
of exec, as well as call auto_load_packages.
* python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
gdb_python_module and not gdb_module.
* python/python-internal.h (gdb_python_module): Declare.
* python/python.c (gdb_python_module): New global.
(before_prompt_hook): Check gdb_python_module and not gdb_module.
(_initialize_python): Rename gdb module to _gdb.
Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
(finish_python_initialization): Move Python code to
lib/gdb/__init__.py; instead, set up sys.path and import gdb into
__main__.
gdb/testsuite/
* gdb.python/python.exp (Test stderr location): Update module
location of GDB-specific sys.stderr.
(Test stdout location): Ditto for sys.stdout.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8c83178..9379601 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,29 @@ +2012-09-13 Khoo Yit Phang <khooyp@cs.umd.edu> + + Refactor Python "gdb" module into a proper Python package, by + introducing a new "_gdb" module for code implemented in C, and + using reload/__import__ instead of exec. + * python/lib/gdb/__init__.py: Import * from _gdb. + (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr, + prompt_hook, sys.argv): Moved from finish_python_initialization. + (pretty_printers, PYTHONDIR): Moved from _initialize_python. + (packages, auto_load_packages): New list and function replacing + module_dict and auto-loading code, using __file__ instead of + gdb.PYTHONDIR and reload/__import__ instead of exec. + (GdbSetPythonDirectory): Replacing function of the same name + from finish_python_initialization, using reload/__import__ instead + of exec, as well as call auto_load_packages. + * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check + gdb_python_module and not gdb_module. + * python/python-internal.h (gdb_python_module): Declare. + * python/python.c (gdb_python_module): New global. + (before_prompt_hook): Check gdb_python_module and not gdb_module. + (_initialize_python): Rename gdb module to _gdb. + Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py. + (finish_python_initialization): Move Python code to + lib/gdb/__init__.py; instead, set up sys.path and import gdb into + __main__. + 2012-09-13 Pedro Alves <palves@redhat.com> * Makefile.in (COMMON_OBS): Add registry.o. |