We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19e16d8 commit d494cccCopy full SHA for d494ccc
src/runtime/StateSerialization/NoopFormatter.cs
@@ -5,7 +5,7 @@
5
namespace Python.Runtime;
6
7
public class NoopFormatter : IFormatter {
8
- public object Deserialize(Stream s) => null; // throw new NotImplementedException();
+ public object Deserialize(Stream s) => throw new NotImplementedException();
9
public void Serialize(Stream s, object o) {}
10
11
public SerializationBinder? Binder { get; set; }
0 commit comments