You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have from pipes import quote in a few parts of the code. But the pipes module exports in __all__ only Template. The quote method was supposed to be internal, but probably due to it being useful, now it is exported/documented in shlex.quote, but I believe it's Py3 only
So when moving to Py3, 2to3/six/futurize won't alert us about that, and so this ticket as a remainder 😬
The text was updated successfully, but these errors were encountered:
We have
from pipes import quote
in a few parts of the code. But thepipes
module exports in__all__
onlyTemplate
. Thequote
method was supposed to be internal, but probably due to it being useful, now it is exported/documented inshlex.quote
, but I believe it's Py3 onlySo when moving to Py3,
2to3
/six
/futurize
won't alert us about that, and so this ticket as a remainder 😬The text was updated successfully, but these errors were encountered: