Skip to content

Commit 1816895

Browse files
committed
Fix encoding declaration for _sha1.py and _md5.py
1 parent 7fe91bd commit 1816895

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

graalpython/lib-python/3/_md5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# coding=utf-8
1+
# -*- coding: iso-8859-1 -*-
22
# Copyright (c) 2017, 2018, Oracle and/or its affiliates.
33
# Copyright (c) 2017, The PyPy Project
44
#

graalpython/lib-python/3/_sha1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# coding=utf-8
1+
# -*- coding: iso-8859-1 -*-
22
# Copyright (c) 2017, 2018, Oracle and/or its affiliates.
33
# Copyright (c) 2017, The PyPy Project
44
#

0 commit comments

Comments
 (0)