bazel-team team mailing list archive
-
bazel-team team
-
Mailing list archive
-
Message #00077
Bug#1084551: bazel-bootstrap: removal of Python standard libraries in Python 3.13
Hi all,
This is an easy one. Because it only uses pipes.quote(). And shlex has the
same function.
In tools/objc/j2objc_dead_code_pruner.py, There is a line:
import pipes # swap to shlex once on Python 3
Just change it to "import shlex as pipes # swap to shlex once on Python 3"
solve the problem,
And this can be done in debian/patches/env_python3.patch I think as all the
patches related to python3 are there.
Yours,
Paul