[issue37316] mmap.mmap() passes the wrong variable to PySys_Audit()

2019-06-21 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue37316] mmap.mmap() passes the wrong variable to PySys_Audit()

2019-06-21 Thread Steve Dower
Steve Dower added the comment: New changeset 6c7947713a40851e123493ca0fe8f2791d7ed2a6 by Steve Dower in branch '3.8': bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152) https://github.com/python/cpython/commit/6c7947713a40851e123493ca0fe8f2791d7ed2a6 -- __

[issue37316] mmap.mmap() passes the wrong variable to PySys_Audit()

2019-06-21 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +14112 pull_request: https://github.com/python/cpython/pull/14289 ___ Python tracker ___ _

[issue37316] mmap.mmap() passes the wrong variable to PySys_Audit()

2019-06-21 Thread Steve Dower
Steve Dower added the comment: New changeset 08286d52b29de604a4b187bf1f0d4209e39c926c by Steve Dower (Zackery Spytz) in branch 'master': bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152) https://github.com/python/cpython/commit/08286d52b29de604a4b187bf1f0d4209e39c92

[issue37316] mmap.mmap() passes the wrong variable to PySys_Audit()

2019-06-21 Thread Steve Dower
Steve Dower added the comment: Thanks! Well spotted. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue37316] mmap.mmap() passes the wrong variable to PySys_Audit()

2019-06-21 Thread Eric Snow
Change by Eric Snow : -- nosy: +steve.dower ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue37316] mmap.mmap() passes the wrong variable to PySys_Audit()

2019-06-17 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +13995 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14152 ___ Python tracker ___ __

[issue37316] mmap.mmap() passes the wrong variable to PySys_Audit()

2019-06-17 Thread Zackery Spytz
New submission from Zackery Spytz : new_mmap_object() should pass the fd variable to PySys_Audit(), not fileno. Also, there's a missing call to va_end() in PySys_Audit() itself. -- components: Extension Modules messages: 345834 nosy: ZackerySpytz priority: normal severity: normal statu