~jfpacker/pyeigen/bugfixes-0.1

« back to all changes in this revision

Viewing changes to source/vector/rowvector2f.h

  • Committer: Jussi Lepistö
  • Date: 2010-03-26 06:43:38 UTC
  • mfrom: (17.1.3 pyeigen)
  • Revision ID: jussi.lepisto@iki.fi-20100326064338-030cerxhy7rx0m5c
Merge from py3k branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
 
78
78
// Mapping methods
79
79
#if PY_VERSION_HEX >= 0x03000000
80
 
Py_ssize_t RowVector2f_map_length(RowVector2f* self);
81
80
PyObject* RowVector2f_map_subscript(RowVector2f* self, PyObject* index);
82
81
int RowVector2f_map_ass_subscript(RowVector2f* self, PyObject* index, PyObject* value);
83
82
#endif