Removes some of the strange html characters

This commit is contained in:
julien lengrand-lambert
2014-02-09 17:08:11 +01:00
parent f9d26db223
commit ed375c069a
17 changed files with 169 additions and 168 deletions

View File

@@ -48,7 +48,7 @@ If you want to avoid using a command line, or you don't have the profile module
[python]
import timeit
t1 = timeit.Timer("function()", "from __main__ import function")
t1 = timeit.Timer("function()", "from __main__ import function")
print t1.timeit(1)
[/python]