Last active
December 15, 2015 19:49
-
-
Save rturowicz/5314382 to your computer and use it in GitHub Desktop.
Revisions
-
rturowicz revised this gist
Apr 4, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,4 +4,4 @@ infile = codecs.open("file", "r", "utf-8") line = infile.readline() while line: print line -
rturowicz renamed this gist
Apr 4, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
rturowicz created this gist
Apr 4, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ import codecs infile = codecs.open("file", "r", "utf-8") line = infile.readline() while line: print line