Skip to content

Commit

Permalink
Apply stage1 of futurize
Browse files Browse the repository at this point in the history
  • Loading branch information
twidi committed Sep 7, 2014
1 parent 62eb905 commit 02e8287
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions limpyd_extensions/dynamic/__init__.py
@@ -1,3 +1,5 @@
from __future__ import unicode_literals

from . import model
from . import collection
from . import fields
Expand Down
1 change: 1 addition & 0 deletions limpyd_extensions/dynamic/collection.py
@@ -1,4 +1,5 @@
# -*- coding:utf-8 -*-
from __future__ import unicode_literals

from limpyd.contrib.collection import ExtendedCollectionManager

Expand Down
1 change: 1 addition & 0 deletions limpyd_extensions/dynamic/fields.py
@@ -1,4 +1,5 @@
# -*- coding:utf-8 -*-
from __future__ import unicode_literals

from copy import copy
import re
Expand Down
1 change: 1 addition & 0 deletions limpyd_extensions/dynamic/model.py
@@ -1,4 +1,5 @@
# -*- coding:utf-8 -*-
from __future__ import unicode_literals


from limpyd import fields as limpyd_fields
Expand Down
1 change: 1 addition & 0 deletions limpyd_extensions/dynamic/related.py
@@ -1,4 +1,5 @@
# -*- coding:utf-8 -*-
from __future__ import unicode_literals

from limpyd.contrib.related import re_identifier

Expand Down
1 change: 1 addition & 0 deletions limpyd_extensions/related.py
@@ -1,4 +1,5 @@
# -*- coding:utf-8 -*-
from __future__ import unicode_literals

from itertools import izip

Expand Down
1 change: 1 addition & 0 deletions run_tests.py
@@ -1,4 +1,5 @@
#!/usr/bin/env python
from __future__ import unicode_literals

import sys
if sys.version_info >= (2, 7):
Expand Down
2 changes: 2 additions & 0 deletions tests/base.py
@@ -1,3 +1,5 @@
from __future__ import unicode_literals

import sys
if sys.version_info >= (2, 7):
import unittest
Expand Down
1 change: 1 addition & 0 deletions tests/dynamic/fields.py
@@ -1,4 +1,5 @@
# -*- coding:utf-8 -*-
from __future__ import unicode_literals


from limpyd.model import RedisModel
Expand Down
1 change: 1 addition & 0 deletions tests/dynamic/related.py
@@ -1,4 +1,5 @@
# -*- coding:utf-8 -*-
from __future__ import unicode_literals


from limpyd import fields as limpyd_fields
Expand Down
1 change: 1 addition & 0 deletions tests/related.py
@@ -1,4 +1,5 @@
# -*- coding:utf-8 -*-
from __future__ import unicode_literals

import time

Expand Down

0 comments on commit 02e8287

Please sign in to comment.