()
| 2541 | |
| 2542 | impl AsNumber for PyType { |
| 2543 | fn as_number() -> &'static PyNumberMethods { |
| 2544 | static AS_NUMBER: PyNumberMethods = PyNumberMethods { |
| 2545 | or: Some(|a, b, vm| or_(a.to_owned(), b.to_owned(), vm)), |
| 2546 | ..PyNumberMethods::NOT_IMPLEMENTED |
| 2547 | }; |
| 2548 | &AS_NUMBER |
| 2549 | } |
| 2550 | } |
| 2551 | |
| 2552 | impl Representable for PyType { |