Push the first element onto the top of the stack. The first element is returned.
(self)
| 701 | return o |
| 702 | |
| 703 | def home(self): |
| 704 | """ |
| 705 | Push the first element onto the top of the stack. |
| 706 | |
| 707 | The first element is returned. |
| 708 | """ |
| 709 | return self.push(self._elements[0]) if self._elements else None |
| 710 | |
| 711 | |
| 712 | def safe_masked_invalid(x, copy=False): |
no test coverage detected