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.

Author serhiy.storchaka
Recipients Jonathan Ng, serhiy.storchaka
Date 2016-12-01.12:41:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1480596110.99.0.836686386846.issue28847@psf.upfronthosting.co.za>
In-reply-to
Content
This example is too artificial.

But there is a real issue: opening read-only files in read mode. Currently this causes a PermissionError on closing.

For backward compatibility flags 'r' and 'w' are ignored. I.e. opening with 'r' and 'w' creates a file if it is not existing, and opening with 'r' allows modifying the database. Since 3.6 this emits deprecation warnings (issue21708). In future versions this will be an error.

Proposed patch makes two changes:

1. The index file no longer written if the database was not modified. This increases performance and adds a support of read-only files.

2. A deprecation warning is raised when the index file is absent in 'r' and 'w' modes. In future versions this will be an error.

May be the first change can be backported.
History
Date User Action Args
2016-12-01 12:41:51serhiy.storchakasetrecipients: + serhiy.storchaka, Jonathan Ng
2016-12-01 12:41:50serhiy.storchakasetmessageid: <1480596110.99.0.836686386846.issue28847@psf.upfronthosting.co.za>
2016-12-01 12:41:50serhiy.storchakalinkissue28847 messages
2016-12-01 12:41:50serhiy.storchakacreate