8000 implement list codec by koubaa · Pull Request #1084 · pythonnet/pythonnet · GitHub
[go: up one dir, main page]

Skip to content

implement list codec #1084

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 25 commits into from
Feb 18, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
make decoders public
  • Loading branch information
koubaa committed Feb 16, 2021
commit 32fa32d5878a1937a5c5f9e3149abf8a7a84f949
2 changes: 1 addition & 1 deletion src/runtime/Codecs/IterableDecoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Python.Runtime.Codecs
{
class IterableDecoder : IPyObjectDecoder
public class IterableDecoder : IPyObjectDecoder
{
internal static bool IsIterable(Type targetType)
{
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/Codecs/ListDecoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Python.Runtime.Codecs
{
class ListDecoder : IPyObjectDecoder
public class ListDecoder : IPyObjectDecoder
{
private static bool IsList(Type targetType)
{
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/Codecs/SequenceDecoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Python.Runtime.Codecs
{
class SequenceDecoder : IPyObjectDecoder
public class SequenceDecoder : IPyObjectDecoder
{
internal static bool IsSequence(Type targetType)
{
Expand Down
0