| 606 | } |
| 607 | |
| 608 | long |
| 609 | Object::toInteger() const |
| 610 | { |
| 611 | _PyIntObject the_int; |
| 612 | d_manager->copyObjectFromProcess(d_addr, &the_int); |
| 613 | return the_int.ob_ival; |
| 614 | } |
| 615 | |
| 616 | double |
| 617 | Object::toFloat() const |
nothing calls this directly
no test coverage detected