🌐 AI搜索 & 代理 主页
Skip to content

Commit 44c5ee5

Browse files
committed
make decoders public
1 parent 8af314b commit 44c5ee5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/runtime/Codecs/IterableDecoder.cs

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

44
namespace Python.Runtime.Codecs
55
{
6-
class IterableDecoder : IPyObjectDecoder
6+
public class IterableDecoder : IPyObjectDecoder
77
{
88
internal static bool IsIterable(Type targetType)
99
{

src/runtime/Codecs/ListDecoder.cs

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

44
namespace Python.Runtime.Codecs
55
{
6-
class ListDecoder : IPyObjectDecoder
6+
public class ListDecoder : IPyObjectDecoder
77
{
88
private static bool IsList(Type targetType)
99
{

src/runtime/Codecs/SequenceDecoder.cs

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

44
namespace Python.Runtime.Codecs
55
{
6-
class SequenceDecoder : IPyObjectDecoder
6+
public class SequenceDecoder : IPyObjectDecoder
77
{
88
internal static bool IsSequence(Type targetType)
99
{

0 commit comments

Comments
 (0)