Skip to content

Python2.6 - Python3.3 support #374

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 32 commits into from
Closed

Conversation

w-diesel
Copy link
Contributor

I fixed code from graingert's pull request. Now it works the same way as in original pypi package on python2.7 + Django1.5.1

Tested it manualy, and it works on Python 2.7.3, 3.2.3 and 3.3.1 version.

As we going to support Django 1.5, i assume we can drop python2.5 support. Just like Django1.5. So we can use futurestatements in code. It makes the code easier to adapt to new versions of python.

djtb_portonpy3

djtb_portonpy3-sql

graingert and others added 29 commits April 8, 2013 21:00
=> python2.6.5
change attributes "func_code" -> "__code__" and "func_closure" -> "__closure__"   ( => python2.6 )
Remove u'' prefix, and import __future__ unicode_literals.
Now all strings without the u'' - are Unicode.


>>> from __future__ import unicode_literals
>>> hasattr(str, '__name__')
True
hashlib.sha1 operates on bytes.
from __future__ import unicode_literals
@graingert
Copy link
Contributor

can you send this pull request to my repo?

don't allow failures
This commit allows masterbranch to pass all original tests with Django 1.5 (python2).

Django 1.5 introduce python's bultins vars "True", "False", "None" to the Context, as part of  BaseContext class:

"""
class BaseContext(object):
    def __init__(self, dict_=None):
        self._reset_dicts(dict_)

    def _reset_dicts(self, value=None):
        builtins = {'True': True, 'False': False, 'None': None}
        if value:
            builtins.update(value)
        self.dicts = [builtins]
"""  
django/django@93240b7

So, now we always have List's first element that contains these vars.

Should we see this in the django-debug-toolbar?
@jezdez
Copy link
Contributor

jezdez commented Apr 23, 2013

Closing in favor of #373.

@jezdez jezdez closed this Apr 23, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants