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: Remove private and apparently unused __pad function
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: belopolsky Nosy List: belopolsky, mariocj89
Priority: normal Keywords: patch

Created on 2018-05-16 16:05 by mariocj89, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 4377 merged mariocj89, 2018-05-16 16:06
Messages (2)
msg316827 - (view) Author: Mario Corchero (mariocj89) * (Python triager) Date: 2018-05-16 16:05
When checking on ways to improve coverage of datetime related functions I found this function that seems not to be used anyware.
It is private and mangled, should be safe to remove.

Creating the issue as requested in the PR:
https://github.com/python/cpython/pull/4377
msg317192 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2018-05-20 17:42
New changeset 89a25ce4fdb9c2a1a59d8cbfc498a2614b98e9ae by Alexander Belopolsky (Mario Corchero) in branch 'master':
bpo-33541: Remove unused __pad function (GH-4377)
https://github.com/python/cpython/commit/89a25ce4fdb9c2a1a59d8cbfc498a2614b98e9ae
History
Date User Action Args
2022-04-11 14:59:00adminsetgithub: 77722
2018-05-20 17:44:22belopolskysetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-05-20 17:42:32belopolskysetmessages: + msg317192
2018-05-16 16:08:01serhiy.storchakasetassignee: belopolsky

nosy: + belopolsky
2018-05-16 16:06:15mariocj89setkeywords: + patch
stage: patch review
pull_requests: + pull_request6579
2018-05-16 16:05:33mariocj89create