Code Monkey home page Code Monkey logo

blueprint's People

Contributors

0ion9 avatar adamzap avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

0ion9 adamzap

blueprint's Issues

Python 3 support

Supporting Python 3 looks pretty simple I'm currently using Blueprint under Python 3.

I achieved this by a) changing the definition of Divide in fields.py to support both py2 and py3,
and b) adding the parameter "use_2to3 = True" to the setup() call in setup.py (python2 ignores this parameter)

The change to Divide follows (hope it formats okay)

class Divide(_Operator):
"""When resolved, divides all the provided arguments and returns the result.
"""
try: # python 2
op = operator.div
except AttributeError: # python 3
op = operator.truediv
sym = '/'

AFAICS, that's all that was necessary to make it work for both Py2 and Py3 -- it really was dead easy.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.