8000 Unicode literal all the things · nikicat/github3.py@8f46a4a · GitHub
[go: up one dir, main page]

Skip to content

Commit 8f46a4a

Browse files
committed
Unicode literal all the things
1 parent 8aa02b7 commit 8f46a4a

34 files changed

+47
-0
lines changed

github3/auths.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
This module contains the Authorization object.
77
88
"""
9+
from __future__ import unicode_literals
910

1011
from github3.decorators import requires_basic_auth
1112
from github3.models import GitHubCore

github3/events.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
This module contains the class(es) related to Events
77
88
"""
9+
from __future__ import unicode_literals
910

1011
from github3.models import GitHubObject
1112

github3/gists/comment.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
Module containing the logic for a GistComment
77
88
"""
9+
from __future__ import unicode_literals
910

1011
from github3.models import BaseComment
1112
from github3.users import User

github3/gists/file.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
66
Module containing the logic for the GistFile object.
77
"""
8+
from __future__ import unicode_literals
89

910
from github3.models import GitHubObject
1011

github3/gists/gist.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
This module contains the Gist class alone for simplicity.
77
88
"""
9+
from __future__ import unicode_literals
10+
911
from json import dumps
1012
from github3.models import GitHubCore
1113
from github3.decorators import requires_auth

github3/gists/history.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
Module containing the logic for the GistHistory object.
77
88
"""
9+
from __future__ import unicode_literals
910

1011
from github3.models import GitHubCore
1112
from github3.users import User

github3/git.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
88
See also: http://developer.github.com/v3/git/
99
"""
10+
from __future__ import unicode_literals
1011

1112
from json import dumps
1213
from base64 import b64decode

github3/github.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
This module contains the main GitHub session object.
77
88
"""
9+
from __future__ import unicode_literals
910

1011
from github3.auths import Authorization
1112
from github3.decorators import (requires_auth, requires_basic_auth,

github3/issues/comment.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
24
from github3.models import BaseComment
35
from github3.users import User
46

github3/issues/event.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
24
from github3.models import GitHubCore
35

46

0 commit comments

Comments
 (0)
0