-
Notifications
You must be signed in to change notification settings - Fork 13
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
Python 3 compatibility issues #1
Comments
2 tasks
o-lim
pushed a commit
that referenced
this issue
Mar 15, 2019
--- BEFORE --- .../gn$ ninja -C out && out/gn_unittests ninja: Entering directory `out' ninja: no work to do. [225/434] NinjaBinaryTargetWriterTest.DupeObjFileErrorERROR Duplicate object file The target //foo:bar generates two object files with the same name: obj/bar.a.o It could be you accidentally have a file listed twice in the sources. Or, depending on how your toolchain maps sources to object files, two source files with the same name in different directories could map to the same object file. In the latter case, either rename one of the files or move one of the sources to a separate source_set to avoid them both being in the same target. [320/434] StringUtils.ExpandStringLiteralIdentifier hello hello #1 hello #1/two hello #1 hello #1one hello #11 one11 { one = 1 } [1] A � \ \b "$\ [321/434] StringUtils.ExpandStringLiteralExpressionhello #1 hello #1 [434/434] XmlElementWriter.TestXmlEscape PASSED --- AFTER --- .../gn$ ninja -C out && out/gn_unittests ninja: Entering directory `out' ninja: no work to do. [434/434] XmlElementWriter.TestXmlEscape PASSED Change-Id: I373254af11f962e6876963507e8f10e0e258d28d Reviewed-on: https://gn-review.googlesource.com/1360 Reviewed-by: Brett Wilson <[email protected]>
Python scripts are now python 3 compatible, see d5b67aa |
A bit more work required... https://travis-ci.org/o-lim/generate-ninja/jobs/528082764#L502 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
flake8 testing of https://github.com/o-lim/generate-ninja on Python 3.7.0
$ flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
The text was updated successfully, but these errors were encountered: