Skip to content

Commit 4029ab2

Browse files
committed
Use consistent encoding
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent 508082a commit 4029ab2

39 files changed

+72
-0
lines changed

bpdb/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# encoding: utf-8
2+
13
# The MIT License
24
#
35
# Copyright (c) 2008 Bob Farrell

bpdb/__main__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# encoding: utf-8
2+
13
# The MIT License
24
#
35
# Copyright (c) 2013 Sebastian Ramacher

bpdb/debugger.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# encoding: utf-8
2+
13
# The MIT License
24
#
35
# Copyright (c) 2008 Bob Farrell

bpython/_internal.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# encoding: utf-8
2+
13
import pydoc
24
import sys
35

bpython/args.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# encoding: utf-8
2+
13
"""
24
Module to handle command line argument parsing, for all front-ends.
35
"""

bpython/clipboard.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# encoding: utf-8
2+
13
# The MIT License
24
#
35
# Copyright (c) 2015 Sebastian Ramacher

bpython/curtsies.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# encoding: utf-8
2+
13
from __future__ import absolute_import
24

35
import collections

bpython/curtsiesfrontend/_internal.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# encoding: utf-8
2+
13
# The MIT License
24
#
35
# Copyright (c) 2015 the bpython authors.

bpython/curtsiesfrontend/coderunner.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# encoding: utf-8
2+
13
"""For running Python code that could interrupt itself at any time in order to,
24
for example, ask for a read on stdin, or a write on stdout
35

bpython/curtsiesfrontend/events.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# encoding: utf-8
2+
13
"""Non-keyboard events used in bpython curtsies REPL"""
24
import time
35

0 commit comments

Comments
 (0)