From 694b791748729825a51cb11c6edc9f3c9d836513 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Lozier?= Date: Tue, 24 Feb 2026 23:08:10 -0500 Subject: [PATCH 1/2] Remove dead files from slnx --- IronPython.slnx | 2 -- 1 file changed, 2 deletions(-) diff --git a/IronPython.slnx b/IronPython.slnx index 3b4f31a91..79dec8152 100644 --- a/IronPython.slnx +++ b/IronPython.slnx @@ -13,10 +13,8 @@ - - From 6b1e71b272a94a8ecf1a2002eb154424b4529d14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Lozier?= Date: Tue, 24 Feb 2026 23:08:44 -0500 Subject: [PATCH 2/2] Fix characters in cs files --- src/core/IronPython/Compiler/Ast/BinaryExpression.cs | 4 ++-- src/core/IronPython/Compiler/Ast/FlowChecker.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/IronPython/Compiler/Ast/BinaryExpression.cs b/src/core/IronPython/Compiler/Ast/BinaryExpression.cs index 83cce7e94..4050eb246 100644 --- a/src/core/IronPython/Compiler/Ast/BinaryExpression.cs +++ b/src/core/IronPython/Compiler/Ast/BinaryExpression.cs @@ -190,7 +190,7 @@ private class IsInstruction : BinaryInstruction { public static readonly IsInstruction Instance = new IsInstruction(); public override int Run(InterpretedFrame frame) { - // it’s okay to pop the args in this order due to commutativity of referential equality + // it's okay to pop the args in this order due to commutativity of referential equality frame.Push(PythonOps.Is(frame.Pop(), frame.Pop())); return +1; } @@ -200,7 +200,7 @@ private class IsNotInstruction : BinaryInstruction { public static readonly IsNotInstruction Instance = new IsNotInstruction(); public override int Run(InterpretedFrame frame) { - // it’s okay to pop the args in this order due to commutativity of referential equality + // it's okay to pop the args in this order due to commutativity of referential equality frame.Push(PythonOps.IsNot(frame.Pop(), frame.Pop())); return +1; } diff --git a/src/core/IronPython/Compiler/Ast/FlowChecker.cs b/src/core/IronPython/Compiler/Ast/FlowChecker.cs index 8b3acf40f..557e96a5e 100644 --- a/src/core/IronPython/Compiler/Ast/FlowChecker.cs +++ b/src/core/IronPython/Compiler/Ast/FlowChecker.cs @@ -15,7 +15,7 @@ * The only difference between the two is behavior on delete. * On delete, the name is not assigned to meaningful value (we need to check at runtime if it's initialized), * but it is not uninitialized either (because delete statement will set it to Uninitialized.instance). - * This way, codegen doesn’t have to emit an explicit initialization for it. + * This way, codegen doesn't have to emit an explicit initialization for it. * * Consider: *