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: imaplib shouldn't use cause DeprecationWarnings in 2.6
Type: Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, djc
Priority: normal Keywords:

Created on 2010-01-01 22:22 by djc, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (5)
msg97121 - (view) Author: Dirkjan Ochtman (djc) * (Python committer) Date: 2010-01-01 22:22
imaplib still calls os.popen2(), which has been deprecated in 2.6. It
should probably use subprocess instead, even in 2.6, IMO.

See http://bugs.gentoo.org/show_bug.cgi?id=282859
msg97124 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2010-01-02 02:43
Fixed in r77222.
msg97126 - (view) Author: Dirkjan Ochtman (djc) * (Python committer) Date: 2010-01-02 09:05
Awesome, thanks! Will this be ported to the 2.6.x branch?
msg97128 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2010-01-02 14:21
2010/1/2 djc <report@bugs.python.org>:
>
> djc <dirkjan@ochtman.nl> added the comment:
>
> Awesome, thanks! Will this be ported to the 2.6.x branch?

It already is.
msg97149 - (view) Author: Dirkjan Ochtman (djc) * (Python committer) Date: 2010-01-02 21:44
Perfect.
History
Date User Action Args
2022-04-11 14:56:56adminsetgithub: 51868
2010-01-02 21:44:41djcsetmessages: + msg97149
2010-01-02 14:21:04benjamin.petersonsetmessages: + msg97128
2010-01-02 09:05:08djcsetmessages: + msg97126
2010-01-02 02:43:38benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg97124

resolution: fixed
2010-01-01 22:22:51djccreate