Skip to content

Commit d82ca28

Browse files
committed
Remove usage of #region
It hides away the code in Visual Studio
1 parent ca8d1cb commit d82ca28

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

src/runtime/pyiter.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ protected override void Dispose(bool disposing)
5050
base.Dispose(disposing);
5151
}
5252

53-
#region IEnumerator Members
54-
5553
public bool MoveNext()
5654
{
5755
// dispose of the previous object, if there was one
@@ -80,7 +78,5 @@ public object Current
8078
{
8179
get { return _current; }
8280
}
83-
84-
#endregion
8581
}
8682
}

src/runtime/pythonengine.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ public void Dispose()
3535
Shutdown();
3636
}
3737

38-
#region Properties
39-
4038
public static bool IsInitialized
4139
{
4240
get { return initialized; }
@@ -122,8 +120,6 @@ public static int RunSimpleString(string code)
122120
return Runtime.PyRun_SimpleString(code);
123121
}
124122

125-
#endregion
126-
127123
public static void Initialize()
128124
{
129125
Initialize(Enumerable.Empty<string>());

0 commit comments

Comments
 (0)