summarylogtreecommitdiffstats
path: root/fix-utf8.patch
blob: 0b9f82a03aa5b4bb4e56614975fdd2d0707935ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From 4a8a35f2c27be9f209cfc6f347e7a57a4a62e693 Mon Sep 17 00:00:00 2001
From: Eric Larson <larson.eric.d@gmail.com>
Date: Wed, 19 Dec 2018 10:50:47 -0500
Subject: [PATCH] FIX: Fix encoding lines

---
 scipy/stats/_continuous_distns.py   | 1 +
 scipy/stats/_stats_mstats_common.py | 3 +++
 2 files changed, 4 insertions(+)

diff --git a/scipy/stats/_continuous_distns.py b/scipy/stats/_continuous_distns.py
index 44c05bb7d67..b48d7e7af32 100644
--- a/scipy/stats/_continuous_distns.py
+++ b/scipy/stats/_continuous_distns.py
@@ -1,3 +1,4 @@
+# -*- encoding: utf-8 -*-
 #
 # Author:  Travis Oliphant  2002-2011 with contributions from
 #          SciPy Developers 2004-2011
diff --git a/scipy/stats/_stats_mstats_common.py b/scipy/stats/_stats_mstats_common.py
index e86c8287b48..be478da1f2a 100644
--- a/scipy/stats/_stats_mstats_common.py
+++ b/scipy/stats/_stats_mstats_common.py
@@ -1,3 +1,5 @@
+# -*- encoding: utf-8 -*-
+
 from collections import namedtuple
 
 import numpy as np