Giter VIP home page Giter VIP logo

Comments (4)

anossov avatar anossov commented on July 18, 2024

I'll see what I can do. Shouldn't be hard.

from openrtb.

alep avatar alep commented on July 18, 2024

Thanks, I run 2to3 and it seems to work, only one test failing:

class TestFields(unittest.TestCase):
    ...
    def test_bad_utf8(self):
        self.assertEqual(openrtb.base.String('x\xff'), 'x')

which I guess it's because 2to3 changes unicode to str so the following function (result of running 2to3 to base.py) doesn't work correctly:

def String(value):
    if isinstance(value, str):
        return value
    if isinstance(value, str):
        return value.decode('utf-8', errors='ignore')

    return str(value)

I was wondering if there are any issues with encoding and the RTB protocol which python3 might brake.

Cheers!

from openrtb.

NorthIsUp avatar NorthIsUp commented on July 18, 2024

the "hardest" part will be dealing with the ObjectMeta class. So six will probably have to be added as a dependency.

from openrtb.

anossov avatar anossov commented on July 18, 2024

Resolved by merging #17

from openrtb.

Related Issues (11)

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.