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: Increase Code Coverage for SharedMemory and ShareableListe
Type: Stage: resolved
Components: Tests Versions: Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: corona10, vinay0410
Priority: normal Keywords: patch

Created on 2019-09-14 07:44 by vinay0410, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 16139 merged vinay0410, 2019-09-14 07:54
Messages (3)
msg352420 - (view) Author: Vinay Sharma (vinay0410) * Date: 2019-09-14 07:44
Add Tests for SharedMemory and ShareableList. I have also added a check to prevent users from creating shared memory of size 0, because after creating mmap will throw error while memory mapping she of size 0.
msg373957 - (view) Author: Vinay Sharma (vinay0410) * Date: 2020-07-19 11:08
Remove Check to prevent creating shared_memory with size 0. Will create a different issue for the same.
msg373964 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2020-07-19 13:36
New changeset bfd0fbdc1352534b3c91b46dbae4285f5220acf4 by Vinay Sharma in branch 'master':
bpo-38169: Increase code coverage for SharedMemory and ShareableList (GH-16139)
https://github.com/python/cpython/commit/bfd0fbdc1352534b3c91b46dbae4285f5220acf4
History
Date User Action Args
2022-04-11 14:59:20adminsetgithub: 82350
2020-07-19 13:36:13corona10setstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2020-07-19 13:36:01corona10setnosy: + corona10
messages: + msg373964
2020-07-19 11:08:34vinay0410setmessages: + msg373957
2019-09-14 07:54:50vinay0410setkeywords: + patch
stage: patch review
pull_requests: + pull_request15749
2019-09-14 07:44:31vinay0410create