From 7a0ba14f793216984d5bbfe15d2ac225b841a8d7 2011-03-24 19:35:37 From: Thomas Kluyver Date: 2011-03-24 19:35:37 Subject: [PATCH] Add file encoding declarations to two tests. --- diff --git a/IPython/core/tests/test_compilerop.py b/IPython/core/tests/test_compilerop.py index 26ed154..1e214d2 100644 --- a/IPython/core/tests/test_compilerop.py +++ b/IPython/core/tests/test_compilerop.py @@ -1,3 +1,4 @@ +# coding: utf-8 """Tests for the compilerop module. """ #----------------------------------------------------------------------------- diff --git a/IPython/core/tests/test_history.py b/IPython/core/tests/test_history.py index 84a6a3a..fc5e4b3 100644 --- a/IPython/core/tests/test_history.py +++ b/IPython/core/tests/test_history.py @@ -1,3 +1,4 @@ +# coding: utf-8 """Tests for the IPython tab-completion machinery. """ #-----------------------------------------------------------------------------