diff options
author | Pier-Yves Lessard <py.lessard@gmail.com> | 2017-08-28 08:32:44 (GMT) |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2017-08-28 08:32:44 (GMT) |
commit | a30f6d45ac3e72761b96a8df0527182029eaee24 (patch) | |
tree | 78979f1ea774a03b5f895f4a661a829a247f3a83 /Misc | |
parent | ed94a8b2851914bcda3a77b28b25517b8baa91e6 (diff) | |
download | cpython-a30f6d45ac3e72761b96a8df0527182029eaee24.zip cpython-a30f6d45ac3e72761b96a8df0527182029eaee24.tar.gz cpython-a30f6d45ac3e72761b96a8df0527182029eaee24.tar.bz2 |
bpo-30987 - Support for ISO-TP protocol in SocketCAN (#2956)
* Added support for CAN_ISOTP protocol
* Added unit tests for CAN ISOTP
* Updated documentation for ISO-TP protocol
* Removed trailing whitespace in documentation
* Added blurb NEWS.d file
* updated Misc/ACKS
* Fixed broken unit test that was using isotp const outside of skippable section
* Removed dependecy over third party project
* Added implementation for getsockname + unit tests
* Missing newline at end of ACKS file
* Accidentally inserted a type in ACKS file
* Followed tiran changes review #1 recommendations
* Added spaces after comma
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-07-30-22-00-12.bpo-30987.228rW0.rst | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -908,6 +908,7 @@ John Lenton Kostyantyn Leschenko Benno Leslie Christopher Tur Lesniewski-Laas +Pier-Yves Lessard Alain Leufroy Mark Levinson Mark Levitt diff --git a/Misc/NEWS.d/next/Library/2017-07-30-22-00-12.bpo-30987.228rW0.rst b/Misc/NEWS.d/next/Library/2017-07-30-22-00-12.bpo-30987.228rW0.rst new file mode 100644 index 0000000..de30ea8 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-07-30-22-00-12.bpo-30987.228rW0.rst @@ -0,0 +1 @@ +Added support for CAN ISO-TP protocol in the socket module. |