diff python_to_octave.h @ 392:09a1acb81d8b

Delete legacy code no longer used in project * configure.ac: Drop checks for headers and functions no longer needed. * exceptions.cc, exceptions.h: Delete pytave::init_exceptions and related methods and properties for registering exceptions with Boost.Python runtime. * octave_to_python.cc, octave_to_python.h (pytave::octlist_to_pytuple): Delete. * python_to_octave.cc, python_to_octave.h (pytave::pytuple_to_octlist): Delete.
author Mike Miller <mtmiller@octave.org>
date Mon, 03 Apr 2017 13:31:00 -0700
parents a7d597726985
children
line wrap: on
line diff
--- a/python_to_octave.h	Mon Apr 03 12:25:03 2017 -0700
+++ b/python_to_octave.h	Mon Apr 03 13:31:00 2017 -0700
@@ -57,15 +57,6 @@
   */
   void pyobj_to_octvalue (octave_value& oct_value,
                           const boost::python::object& py_object);
-
-  //! Python tuples are converted to Octave value list objects.
-  /*!
-    \param oct_list a reference to octave_value_list to store the result of the conversion.
-    \param py_tuple a constant reference to a boost::python::tuple that contains the tuple to be converted.
-    \see octlist_to_pytuple
-  */
-  void pytuple_to_octlist (octave_value_list& oct_list,
-                           const boost::python::tuple& py_tuple);
 }
 
 #endif