[Python-Dev] VxWorks and cpython?

Serhiy Storchaka storchaka at gmail.com
Thu Jan 10 12:38:37 EST 2019


10.01.19 18:54, Kuhl, Brian пише:
> The changes to Python are not large, I've kept the pull request from last year's POC active. The changed files provide a good summary of the scope.
> https://github.com/python/cpython/pull/4184/files

To prepare this PR for review the following changes are required:

* Update it to the current master. Currently there are many conflicts.
* Remove unrelated changes, like: adding/removing empty lines, 
adding/removing spaces in unrelated lines.
* Remove unrelated changes in 'configure'. It depends on the used 
version of autoconf.
* Ensure that you do not use tabs, unless they are necessary (in Makefile).
* Make the code conforming PEP 7 and PEP 8. In particular, spaces should 
be added between 'if' and '(', between ')' and '{', opening '{' should 
be on the same line for statements, but on a new line if it is defines a 
function body, parenthesis around conditions of 'if' and 'while' are not 
needed in Python, long lines should be wrapped, etc, etc.



More information about the Python-Dev mailing list