Skip to content

Commit 9a18f80

Browse files
committed
Merge pull request gregmalcolm#102 from irheart/master
Note on list.pop(0) in Python 2 vs Python 3 in about_lists
2 parents c9e842e + f44242e commit 9a18f80

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

python3/koans/about_lists.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,6 @@ def test_making_queues(self):
103103
self.assertEqual(__, popped_value)
104104
self.assertEqual(__, queue)
105105

106-
# Note, for Python 2 popping from the left hand side of a list is
106+
# Note, popping from the left hand side of a list is
107107
# inefficient. Use collections.deque instead.
108108

109-
# This is not an issue for Python 3 though
110-

0 commit comments

Comments
 (0)