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 vstinner
Recipients pitrou, serhiy.storchaka, vstinner
Date 2014-10-22.12:32:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1413981136.76.0.274803749655.issue22696@psf.upfronthosting.co.za>
In-reply-to
Content
For the issue #22599, I wrote a patch but then I removed my patch and reverted my changed...

Here is a new patch which implements why I already wrote: add a new sys._is_finalizing() function, with a unit test.

> I propose to add a new function sys.shutting_down() (name debatable)

The name sounds like a function to shut down the computer or exit Python.

I don't like _is_finalizing() name neither :-)

My patch uses a private function which is CPython specific. Does it make sense to add a public function instead? Is it possible to implement it in any Python implementation (PyPy, IronPython, Jython, etC.)? I guess that the most dummy implementation is to always return False (Python is always running.
History
Date User Action Args
2014-10-22 12:32:16vstinnersetrecipients: + vstinner, pitrou, serhiy.storchaka
2014-10-22 12:32:16vstinnersetmessageid: <1413981136.76.0.274803749655.issue22696@psf.upfronthosting.co.za>
2014-10-22 12:32:16vstinnerlinkissue22696 messages
2014-10-22 12:32:16vstinnercreate