* python/py-breakpoint.c: Include python.h.
* python/py-continueevent.c (create_continue_event_object): Make
static.
* python/py-lazy-string.c (stpy_get_type): Make static.
* python/py-newobjfileevent.c (create_new_objfile_event_object):
Make static.
* python/py-utils.c (unicode_to_target_python_string): Make
static.
* python/py-value.c: Include python.h.
+2012-03-01 Pedro Alves <palves@redhat.com>
+
+ * python/py-breakpoint.c: Include python.h.
+ * python/py-continueevent.c (create_continue_event_object): Make
+ static.
+ * python/py-lazy-string.c (stpy_get_type): Make static.
+ * python/py-newobjfileevent.c (create_new_objfile_event_object):
+ Make static.
+ * python/py-utils.c (unicode_to_target_python_string): Make
+ static.
+ * python/py-value.c: Include python.h.
+
2012-03-01 Pedro Alves <palves@redhat.com>
* inferior.c (delete_threads_of_inferior): Delete.
#include "value.h"
#include "exceptions.h"
#include "python-internal.h"
+#include "python.h"
#include "charset.h"
#include "breakpoint.h"
#include "gdbcmd.h"
static PyTypeObject continue_event_object_type;
-PyObject *
+static PyObject *
create_continue_event_object (void)
{
return create_thread_event_object (&continue_event_object_type);
return PyLong_FromLong (self_string->length);
}
-PyObject *
+static PyObject *
stpy_get_type (PyObject *self, void *closure)
{
lazy_string_object *str_obj = (lazy_string_object *) self;
static PyTypeObject new_objfile_event_object_type;
-PyObject *
+static PyObject *
create_new_objfile_event_object (struct objfile *objfile)
{
PyObject *objfile_event;
object converted to the target's charset. If an error occurs
during the conversion, NULL will be returned and a python exception
will be set. */
-PyObject *
+static PyObject *
unicode_to_target_python_string (PyObject *unicode_str)
{
return unicode_to_encoded_python_string (unicode_str,
#include "infcall.h"
#include "expression.h"
#include "cp-abi.h"
+#include "python.h"
#ifdef HAVE_PYTHON