This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Add tests for marshal FILE* API
Type: enhancement Stage: resolved
Components: Tests Versions: Python 3.4, Python 3.5, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: serhiy.storchaka Nosy List: kristjan.jonsson, python-dev, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2015-02-04 07:33 by serhiy.storchaka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test_marshal_file_api.patch serhiy.storchaka, 2015-02-04 07:33 review
Messages (2)
msg235381 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2015-02-04 07:33
Marshal C API functions that works with FILE* (PyMarshal_WriteLongToFile, PyMarshal_WriteObjectToFile, PyMarshal_ReadLongFromFile, PyMarshal_ReadShortFromFile, PyMarshal_ReadObjectFromFile, PyMarshal_ReadLastObjectFromFile) are not used now in CPython and are not tested. Proposed patch adds tests for them.
msg235465 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-02-06 07:02
New changeset e55f955659bc by Serhiy Storchaka in branch '2.7':
Issue #23392: Added tests for marshal C API that works with FILE*.
https://hg.python.org/cpython/rev/e55f955659bc

New changeset 05153851d1d6 by Serhiy Storchaka in branch '3.4':
Issue #23392: Added tests for marshal C API that works with FILE*.
https://hg.python.org/cpython/rev/05153851d1d6

New changeset 7f22813496de by Serhiy Storchaka in branch 'default':
Issue #23392: Added tests for marshal C API that works with FILE*.
https://hg.python.org/cpython/rev/7f22813496de
History
Date User Action Args
2022-04-11 14:58:12adminsetgithub: 67581
2015-02-06 07:12:50serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2015-02-06 07:02:08python-devsetnosy: + python-dev
messages: + msg235465
2015-02-04 07:34:23serhiy.storchakalinkissue23344 dependencies
2015-02-04 07:33:53serhiy.storchakacreate