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: cPickle holds GIL during I/O
Type: Stage:
Components: Extension Modules Versions:
process
Status: closed Resolution: works for me
Dependencies: Superseder:
Assigned To: Nosy List: tim.peters
Priority: normal Keywords:

Created on 2001-03-20 03:03 by anonymous, last changed 2022-04-10 16:03 by admin. This issue is now closed.

Messages (2)
msg3969 - (view) Author: Nobody/Anonymous (nobody) Date: 2001-03-20 03:03
The cPickle module does not release the global
interpreter lock during I/O operations. In my
ThreadingTCPServer, this prevents other threads from
working until the connection thread doing
cPickle.load(mysocket) goes away.
msg3970 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2001-03-20 03:43
Logged In: YES 
user_id=31435

Please try again under current CVS; this was changed a few 
days ago; you can reopen the bug if it still doesn't work.
History
Date User Action Args
2022-04-10 16:03:52adminsetgithub: 34193
2001-03-20 03:03:04anonymouscreate