From: Zac Medico Date: Wed, 21 Mar 2012 21:24:15 +0000 (-0700) Subject: PreservedLibsRegistry: enable JSON write support X-Git-Tag: v2.2.0_alpha94~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=716b1864e03212b09f94ddf3573fbfa451473558;p=portage.git PreservedLibsRegistry: enable JSON write support JSON read support has been available since portage-2.2.0_alpha89. --- diff --git a/pym/portage/util/_dyn_libs/PreservedLibsRegistry.py b/pym/portage/util/_dyn_libs/PreservedLibsRegistry.py index 7d4708bbe..d774f8067 100644 --- a/pym/portage/util/_dyn_libs/PreservedLibsRegistry.py +++ b/pym/portage/util/_dyn_libs/PreservedLibsRegistry.py @@ -30,8 +30,8 @@ if sys.hexversion >= 0x3000000: class PreservedLibsRegistry(object): """ This class handles the tracking of preserved library objects """ - # Enable this after JSON read has been supported for some time. - _json_write = False + # JSON read support has been available since portage-2.2.0_alpha89. + _json_write = True _json_write_opts = { "ensure_ascii": False,