We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d26c214 commit 59e3b6bCopy full SHA for 59e3b6b
src/core/IronPython/Runtime/PythonContext.cs
@@ -685,10 +685,14 @@ internal static Version GetPythonVersion()
685
686
internal FloatFormat DoubleFormat { get; set; }
687
688
+#nullable enable
689
+
690
/// <summary>
691
/// Not null if the Python context is running in a console host.
692
/// </summary>
- internal IConsole/*?*/ Console { get; set; }
693
+ internal IConsole? Console { get; set; }
694
695
+#nullable restore
696
697
698
/// Initializes the sys module on startup. Called both to load and reload sys
0 commit comments