GithubHelp home page GithubHelp logo

Comments (7)

benjaminp avatar benjaminp commented on August 15, 2024

Original comment by Bernhard Gschaider (Bitbucket: bgschaid, GitHub: bgschaid):


That's fine with me. The thing was I saw the docu when porting and thought "Ah. Keyword arguments. That is self-documenting. Lets use it". And I didn't test that particular path on python3 so I didn't see the error of my ways

from six.

benjaminp avatar benjaminp commented on August 15, 2024

I hope that's good enough for you.

from six.

benjaminp avatar benjaminp commented on August 15, 2024

rename python 2's exec_ arguments to avoid accidently calling with keywords (fixes #16)

from six.

benjaminp avatar benjaminp commented on August 15, 2024

Original comment by Bernhard Gschaider (Bitbucket: bgschaid, GitHub: bgschaid):


Right. So exec_ behaves differently on Python2 and Python3 and the point of six is to hide these differences. So what I'd propose is either

  1. Write for Python3 a function that wraps exec and accepts keywords

  2. Rewrite the Python2 implementation to something like (just a sketch)

#!python

def exec_(code,*args):
     globs,locs=None,None
     if len(args)>0:
        globs=args[0]
     if len(args)>1:
        locs=args[1]
     if len(args)>2:
        raise TypeError("exec expected at most 3 arguments, got 4")
    # After that the current implementation

from six.

benjaminp avatar benjaminp commented on August 15, 2024

You shouldn't rely on it, though because

#!pycon
Python 3.4.0a0 (default:ce99559efa46+, Jan  8 2013, 11:43:31) 
[GCC 4.5.4] on linux
Type "help", "copyright", "credits" or "license" for more information.
x>>> exec("x", globals={})
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: exec() takes no keyword arguments

from six.

benjaminp avatar benjaminp commented on August 15, 2024

Original comment by Bernhard Gschaider (Bitbucket: bgschaid, GitHub: bgschaid):


Yes. I ported a piece of code that used them as named parameters and it blew up

from six.

benjaminp avatar benjaminp commented on August 15, 2024

I assume the difference you're referring to is the argument names?

from six.

Related Issues (20)

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.