Skip to content

Commit

Permalink
More public declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamparter committed Nov 26, 2024
1 parent 31e7105 commit 6f2f009
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/IronPython/Runtime/PythonList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ internal static PythonList FromEnumerable(IEnumerable items) {
/// onto and may be mutated in the future by the list.
/// </summary>
/// <param name="data">params array to use for lists storage</param>
internal static PythonList FromArrayNoCopy(params object[] data)
public static PythonList FromArrayNoCopy(params object[] data)

Check failure on line 223 in src/core/IronPython/Runtime/PythonList.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Parameter 'data' does not have the NotNoneAttribute

Check failure on line 223 in src/core/IronPython/Runtime/PythonList.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Parameter 'data' does not have the NotNoneAttribute

Check failure on line 223 in src/core/IronPython/Runtime/PythonList.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Parameter 'data' does not have the NotNoneAttribute

Check failure on line 223 in src/core/IronPython/Runtime/PythonList.cs

View workflow job for this annotation

GitHub Actions / build (macos-latest-large)

Parameter 'data' does not have the NotNoneAttribute

Check failure on line 223 in src/core/IronPython/Runtime/PythonList.cs

View workflow job for this annotation

GitHub Actions / build (macos-latest-large)

Parameter 'data' does not have the NotNoneAttribute

Check failure on line 223 in src/core/IronPython/Runtime/PythonList.cs

View workflow job for this annotation

GitHub Actions / build (macos-latest-large)

Parameter 'data' does not have the NotNoneAttribute
=> new PythonList(data);

#endregion
Expand Down
2 changes: 1 addition & 1 deletion src/core/IronPython/Runtime/Types/PythonType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ internal int SlotCount {
/// <summary>
/// Gets the name of the dynamic type
/// </summary>
internal string Name { get; set; }
public string Name { get; set; }

internal string QualName { get; set; }

Expand Down

0 comments on commit 6f2f009

Please sign in to comment.