| 112 | } |
| 113 | |
| 114 | static void setItem( ObjectVector &o, int64_t index, ObjectPtr value ) |
| 115 | { |
| 116 | if ( !value ) |
| 117 | { |
| 118 | PyErr_SetString( PyExc_ValueError, "Invalid Object pointer!" ); |
| 119 | throw_error_already_set(); |
| 120 | } |
| 121 | o.members()[convertIndex( o, index )] = value; |
| 122 | } |
| 123 | |
| 124 | static void delItem( ObjectVector &o, int64_t index ) |
| 125 | { |
nothing calls this directly
no test coverage detected