Skip to content

Commit

Permalink
Add future print and update compatibility info
Browse files Browse the repository at this point in the history
  • Loading branch information
tofu-rocketry committed May 11, 2017
1 parent 6095b6a commit 41e1b3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ProjectEulerAnswers.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Module that contains functions that solve Project Euler propblems.
"""

# The import of print_function can be removed if running on Python 2.4.
from __future__ import print_function # Python 2.6 or 2.7 required

from sys import version_info
import time

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

Code for solving problems from [Project Euler](https://projecteuler.net/). Released under the MIT licence (see LICENCE.txt).

Compatible with Python 2.4 to 2.7.
Compatible with Python 2.6 to 2.7.

0 comments on commit 41e1b3f

Please sign in to comment.