Skip to content
Open

. #427

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion chaining_method.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from __future__ import print_function

class Person(object):

Expand Down
2 changes: 0 additions & 2 deletions iterator.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@

Implementation of the iterator pattern with a generator"""

from __future__ import print_function


def count_to(count):
"""Counts by word numbers, up to a maximum of five"""
Expand Down
3 changes: 0 additions & 3 deletions state.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
#!/usr/bin/env python
"""Implementation of the state pattern"""

# http://ginstrom.com/scribbles/2007/10/08/design-patterns-python-style/
from __future__ import print_function


class State(object):

Expand Down