Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a3953bc

Browse filesBrowse files
committed
remove all occurences of unicode_literals
1 parent 2524b67 commit a3953bc
Copy full SHA for a3953bc
Expand file treeCollapse file tree

16 files changed

+0
-45
lines changed

‎djng/__init__.py

Copy file name to clipboardExpand all lines: djng/__init__.py
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
31
"""
42
See PEP 386 (https://www.python.org/dev/peps/pep-0386/)
53

‎djng/app_config.py

Copy file name to clipboardExpand all lines: djng/app_config.py
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
from django.apps import AppConfig
52

63

‎djng/app_settings.py

Copy file name to clipboardExpand all lines: djng/app_settings.py
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
4-
51
class AppSettings(object):
62
def _setting(self, name, default=None):
73
from django.conf import settings

‎djng/core/urlresolvers.py

Copy file name to clipboardExpand all lines: djng/core/urlresolvers.py
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
31
from inspect import isclass
42

53
import six

‎djng/forms/angular_base.py

Copy file name to clipboardExpand all lines: djng/forms/angular_base.py
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
import json
52
from base64 import b64encode
63

‎djng/forms/angular_model.py

Copy file name to clipboardExpand all lines: djng/forms/angular_model.py
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
from django.forms.utils import ErrorDict
52
from django.utils.html import format_html
63
from djng.forms.angular_base import NgFormBaseMixin, SafeTuple

‎djng/forms/angular_validation.py

Copy file name to clipboardExpand all lines: djng/forms/angular_validation.py
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
31
from django.forms import widgets
42
from django.utils.html import format_html
53
from django.utils.encoding import force_text

‎djng/forms/fields.py

Copy file name to clipboardExpand all lines: djng/forms/fields.py
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
import re
52
import mimetypes
63

‎djng/forms/renderers.py

Copy file name to clipboardExpand all lines: djng/forms/renderers.py
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
from django.forms.renderers import DjangoTemplates
52

63

‎djng/forms/widgets.py

Copy file name to clipboardExpand all lines: djng/forms/widgets.py
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
import mimetypes
52

63
from django import VERSION as DJANGO_VERSION

‎djng/middleware.py

Copy file name to clipboardExpand all lines: djng/middleware.py
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
31
import six
42
from django import http
53
from django.urls import reverse

‎djng/sekizai_processors.py

Copy file name to clipboardExpand all lines: djng/sekizai_processors.py
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
31
"""
42
To be used in Sekizai's render_block to postprocess AngularJS module dependenies
53
"""

‎djng/styling/bootstrap3/forms.py

Copy file name to clipboardExpand all lines: djng/styling/bootstrap3/forms.py
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
from six import with_metaclass
52
import warnings
63

‎djng/styling/bootstrap3/widgets.py

Copy file name to clipboardExpand all lines: djng/styling/bootstrap3/widgets.py
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
import warnings
52

63
from django import VERSION as DJANGO_VERSION

‎djng/templatetags/djng_tags.py

Copy file name to clipboardExpand all lines: djng/templatetags/djng_tags.py
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
3-
from __future__ import unicode_literals
4-
51
import json
62

73
from django.template import Library

‎djng/views/upload.py

Copy file name to clipboardExpand all lines: djng/views/upload.py
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
from __future__ import unicode_literals
3-
41
from django.core.exceptions import SuspiciousMultipartForm
52
from django.core import signing
63
from django.views.generic import View

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.