From dea9530cb7d65486143b866b60d9bd1e4914aa56 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 2 Nov 2009 17:04:49 -0500 Subject: [PATCH] Renamed Python global "session" to "current_session" --- src/pyinterp.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyinterp.cc b/src/pyinterp.cc index f5b1a543..9ad9a906 100644 --- a/src/pyinterp.cc +++ b/src/pyinterp.cc @@ -83,7 +83,7 @@ void initialize_for_python() export_value(); export_xact(); - scope().attr("session") = python_session; + scope().attr("current_session") = python_session; } struct python_run