Skip to content

Commit 2062028

Browse files
authored
Remove dead files from slnx (#2005)
* Remove dead files from slnx * Fix characters in cs files
1 parent 29308e7 commit 2062028

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

IronPython.slnx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@
1313
<File Path="Build.proj" />
1414
<File Path="CurrentVersion.props" />
1515
<File Path="Directory.Build.props" />
16-
<File Path="IronPython.ruleset" />
1716
<File Path="LICENSE" />
1817
<File Path="make.ps1" />
19-
<File Path="NuGet.config" />
2018
<File Path="README.md" />
2119
</Folder>
2220
<Folder Name="/Solution Items/Build/">

src/core/IronPython/Compiler/Ast/BinaryExpression.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ private class IsInstruction : BinaryInstruction {
190190
public static readonly IsInstruction Instance = new IsInstruction();
191191

192192
public override int Run(InterpretedFrame frame) {
193-
// its okay to pop the args in this order due to commutativity of referential equality
193+
// it's okay to pop the args in this order due to commutativity of referential equality
194194
frame.Push(PythonOps.Is(frame.Pop(), frame.Pop()));
195195
return +1;
196196
}
@@ -200,7 +200,7 @@ private class IsNotInstruction : BinaryInstruction {
200200
public static readonly IsNotInstruction Instance = new IsNotInstruction();
201201

202202
public override int Run(InterpretedFrame frame) {
203-
// its okay to pop the args in this order due to commutativity of referential equality
203+
// it's okay to pop the args in this order due to commutativity of referential equality
204204
frame.Push(PythonOps.IsNot(frame.Pop(), frame.Pop()));
205205
return +1;
206206
}

src/core/IronPython/Compiler/Ast/FlowChecker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* The only difference between the two is behavior on delete.
1616
* On delete, the name is not assigned to meaningful value (we need to check at runtime if it's initialized),
1717
* but it is not uninitialized either (because delete statement will set it to Uninitialized.instance).
18-
* This way, codegen doesnt have to emit an explicit initialization for it.
18+
* This way, codegen doesn't have to emit an explicit initialization for it.
1919
*
2020
* Consider:
2121
*

0 commit comments

Comments
 (0)