8000 regression on v1.1.x branch, doc build deadlocks by mdboom · Pull Request #852 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

regression on v1.1.x branch, doc build deadlocks #852

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 27, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Use an RLock to avoid deadlock when building docs as reported by @jul…
  • Loading branch information
mdboom committed Apr 27, 2012
commit 390c1fb59252918f36b5ff6ee6df72cd23781ca4
2 changes: 1 addition & 1 deletion lib/matplotlib/backends/backend_agg.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class RendererAgg(RendererBase):
# draw at at time and so the font cache is used by only one
# renderer at a time

lock = threading.Lock()
lock = threading.RLock()
_fontd = maxdict(50)
def __init__(self, width, height, dpi):
if __debug__: verbose.report('RendererAgg.__init__', 'debug-annoying')
Expand Down
0