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: Delete unused text variable on tests
Type: performance Stage: resolved
Components: Tests Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: eamanu, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2019-04-26 00:25 by eamanu, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 12959 merged eamanu, 2019-04-26 00:26
Messages (4)
msg340872 - (view) Author: Emmanuel Arias (eamanu) * Date: 2019-04-26 00:25
On ```test_custom_non_data_descriptor``` and
```test_custom_data_descriptor``` from Lib/test/test_pydoc.py there was a text variable not used.
msg341040 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2019-04-29 02:24
New changeset 86f0c8215c2fdaeef58d185ff00b854a45971f84 by Serhiy Storchaka (Emmanuel Arias) in branch 'master':
bpo-36729: Delete unused text variable on tests. (GH-12959)
https://github.com/python/cpython/commit/86f0c8215c2fdaeef58d185ff00b854a45971f84
msg341086 - (view) Author: Emmanuel Arias (eamanu) * Date: 2019-04-29 14:46
Hello,

Yes not problem. Tonight when I was just to make the MR, I see that the
bugs was solved.

Thanks

Arias Emmanuel
eamanu.com

El lun., 29 de abr. de 2019 05:10, Serhiy Storchaka <report@bugs.python.org>
escribió:

>
> Change by Serhiy Storchaka <storchaka+cpython@gmail.com>:
>
>
> ----------
> resolution:  -> fixed
> stage: patch review -> resolved
> status: open -> closed
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <https://bugs.python.org/issue36729>
> _______________________________________
>
msg341088 - (view) Author: Emmanuel Arias (eamanu) * Date: 2019-04-29 14:51
Sorry for the noise I confused on my mail.

Arias Emmanuel
eamanu.com

El lun., 29 de abr. de 2019 11:46, Emmanuel Arias <report@bugs.python.org>
escribió:

>
> Emmanuel Arias <emmanuelarias30@gmail.com> added the comment:
>
> Hello,
>
> Yes not problem. Tonight when I was just to make the MR, I see that the
> bugs was solved.
>
> Thanks
>
> Arias Emmanuel
> eamanu.com
>
> El lun., 29 de abr. de 2019 05:10, Serhiy Storchaka <
> report@bugs.python.org>
> escribió:
>
> >
> > Change by Serhiy Storchaka <storchaka+cpython@gmail.com>:
> >
> >
> > ----------
> > resolution:  -> fixed
> > stage: patch review -> resolved
> > status: open -> closed
> >
> > _______________________________________
> > Python tracker <report@bugs.python.org>
> > <https://bugs.python.org/issue36729>
> > _______________________________________
> >
>
> ----------
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <https://bugs.python.org/issue36729>
> _______________________________________
>
History
Date User Action Args
2022-04-11 14:59:14adminsetgithub: 80910
2019-04-29 14:51:12eamanusetmessages: + msg341088
2019-04-29 14:46:28eamanusetmessages: + msg341086
2019-04-29 08:10:19serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-04-29 02:24:44serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg341040
2019-04-26 00:26:21eamanusetkeywords: + patch
stage: patch review
pull_requests: + pull_request12885
2019-04-26 00:25:36eamanucreate