Skip to content
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

Request Numba to be able to accept keyword args with Print #4543

Open
phedwards opened this issue Sep 9, 2019 · 2 comments
Open

Request Numba to be able to accept keyword args with Print #4543

phedwards opened this issue Sep 9, 2019 · 2 comments

Comments

@phedwards
Copy link

Especially to enable Flushing a Print statement. But also end=' ' would be useful. Thanks.

@esc
Copy link
Member

esc commented Sep 10, 2019

@phedwards hello and welcome to the Numba issue tracker! We do appreciate your input in helping to improve Numba. I will label this issue as a 'feature request'. Also, here is minimal reproducer to demonstrate, that end= is indeed not supported:

from numba import njit


@njit
def foo():
    print("Hello World", end=' end of line \n')


foo.py_func()
foo()

@seibert
Copy link
Contributor

seibert commented Sep 16, 2019

Also would be nice to select between stdout and stderr for output.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants