From 82558bee647b69d35bdfb4dfcae3a3aea373de9e Mon Sep 17 00:00:00 2001
From: scott snyder <snyder@bnl.gov>
Date: Tue, 10 Dec 2019 16:31:39 +0100
Subject: [PATCH] AthenaPython: Remove earlier std::stream workaround.

Remove earlier workaround for std::stream dictionary issues.
The workaround is now causing warnings in the python 3 build.
If the original issue recurs, will need to try to find
a different way to address it.
---
 Control/AthenaPython/python/PyAthenaComps.py | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/Control/AthenaPython/python/PyAthenaComps.py b/Control/AthenaPython/python/PyAthenaComps.py
index 95f8d64c24b..b2e421fc406 100644
--- a/Control/AthenaPython/python/PyAthenaComps.py
+++ b/Control/AthenaPython/python/PyAthenaComps.py
@@ -72,10 +72,6 @@ class Alg( CfgPyAlgorithm ):
     should be overridden.
     """
     def __init__(self, name = None, **kw):
-        # Needed to prevent spurious root errors about streams in CreateRealData.
-        import ROOT
-        ROOT.GaudiPython.CallbackStreamBuf
-
         if name is None: name = kw.get('name', self.__class__.__name__)
         ## init base class
         super(Alg, self).__init__(name, **kw)
-- 
GitLab