"""
return L.pop()
+@cython.test_assert_path_exists('//PythonCapiCallNode')
+@cython.test_fail_if_path_exists('//SimpleCallNode/AttributeNode')
+def simple_pop_typed(list L):
+ """
+ >>> L = list(range(10))
+ >>> simple_pop_typed(L)
+ 9
+ >>> simple_pop_typed(L)
+ 8
+ >>> L
+ [0, 1, 2, 3, 4, 5, 6, 7]
+ >>> while L:
+ ... _ = simple_pop_typed(L)
+
+ >>> L
+ []
+ >>> simple_pop_typed(L)
+ Traceback (most recent call last):
+ ...
+ IndexError: pop from empty list
+ """
+ return L.pop()
+
+
@cython.test_assert_path_exists('//PythonCapiCallNode')
@cython.test_fail_if_path_exists('//SimpleCallNode/AttributeNode')
def index_pop(L, int i):
"""
return L.pop(i)
+@cython.test_assert_path_exists('//PythonCapiCallNode')
+@cython.test_fail_if_path_exists('//SimpleCallNode/AttributeNode')
+def index_pop_typed(list L, int i):
+ """
+ >>> L = list(range(10))
+ >>> index_pop_typed(L, 2)
+ 2
+ >>> index_pop_typed(L, -2)
+ 8
+ >>> L
+ [0, 1, 3, 4, 5, 6, 7, 9]
+ >>> index_pop_typed(L, 100)
+ Traceback (most recent call last):
+ ...
+ IndexError: pop index out of range
+ >>> index_pop_typed(L, -100)
+ Traceback (most recent call last):
+ ...
+ IndexError: pop index out of range
+
+ >>> while L:
+ ... _ = index_pop_typed(L, 0)
+
+ >>> L
+ []
+
+ >>> index_pop_typed(L, 0)
+ Traceback (most recent call last):
+ ...
+ IndexError: pop from empty list
+ """
+ return L.pop(i)
+
+
@cython.test_fail_if_path_exists('//PythonCapiCallNode')
def crazy_pop(L):
"""