Skip to content

Commit 6f2f009

Browse files
committed
More public declarations
1 parent 31e7105 commit 6f2f009

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/IronPython/Runtime/PythonList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ internal static PythonList FromEnumerable(IEnumerable items) {
220220
/// onto and may be mutated in the future by the list.
221221
/// </summary>
222222
/// <param name="data">params array to use for lists storage</param>
223-
internal static PythonList FromArrayNoCopy(params object[] data)
223+
public static PythonList FromArrayNoCopy(params object[] data)
224224
=> new PythonList(data);
225225

226226
#endregion

src/core/IronPython/Runtime/Types/PythonType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ internal int SlotCount {
749749
/// <summary>
750750
/// Gets the name of the dynamic type
751751
/// </summary>
752-
internal string Name { get; set; }
752+
public string Name { get; set; }
753753

754754
internal string QualName { get; set; }
755755

0 commit comments

Comments
 (0)