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: mailbox module is needlessly executable
Type: Stage:
Components: Library (Lib) Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, meatballhat
Priority: normal Keywords:

Created on 2010-05-20 02:45 by meatballhat, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg106128 - (view) Author: Dan Buch (meatballhat) Date: 2010-05-20 02:45
While running various modules with the ``-m`` flag to check for command-line behavior, I noticed that the mailbox module currently has svn:executable set.  The module contains no ``if __name__ == '__main__'`` magic and, as one would expect, nothing happens when invoking ``python3 -m mailbox``.  Because svn doesn't support an extended diff format that deals with file modes, I would just propose that somebody with commit rights do the following::

    svn propdel svn:executable Lib/mailbox.py
msg112269 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-08-01 06:42
Fixed in r83385.
History
Date User Action Args
2022-04-11 14:57:01adminsetgithub: 53019
2010-08-01 06:42:50georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg112269

resolution: fixed
2010-05-20 02:45:14meatballhatcreate