Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cbfd65c

Browse files
committed
minor fixes
1 parent 75a8b87 commit cbfd65c

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

src/embed_tests/GlobalTestsSetup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Python.EmbeddingTest
77
// As the SetUpFixture, the OneTimeTearDown of this class is executed after
88
// all tests have run.
99
[SetUpFixture]
10-
public class GlobalTestsSetup
10+
public partial class GlobalTestsSetup
1111
{
1212
[OneTimeTearDown]
1313
public void FinalCleanup()

src/embed_tests/TestNativeTypeOffset.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Python.Runtime;
1111

12-
namespace Python.EmbeddingPythonTest
12+
namespace Python.EmbeddingTest
1313
{
1414
public class TestNativeTypeOffset
1515
{

src/runtime/pystring.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,8 @@ public PyString(string s) : base(FromString(s))
6767

6868

6969
/// <summary>
70-
/// IsStringType Method
71-
/// </summary>
72-
/// <remarks>
7370
/// Returns true if the given object is a Python string.
74-
/// </remarks>
71+
/// </summary>
7572
public static bool IsStringType(PyObject value)
7673
{
7774
return Runtime.PyString_Check(value.obj);

0 commit comments

Comments
 (0)