| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -23,6 +23,8 @@ details about the cause of the failure | |||
| 23 | 23 | able to access members that are part of the implementation class, but not the | |
| 24 | 24 | interface. Use the new __implementation__ or __raw_implementation__ properties to | |
| 25 | 25 | if you need to "downcast" to the implementation class. | |
| 26 | + - Parameters marked with `ParameterAttributes.Out` are no longer returned in addition | ||
| 27 | + to the regular method return value (unless they are passed with `ref` or `out` keyword). | ||
| 26 | 28 | ||
| 27 | 29 | ### Fixed | |
| 28 | 30 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -534,7 +534,7 @@ static object[] TryConvertArguments(ParameterInfo[] pi, bool paramsArray, | |||
| 534 | 534 | Runtime.XDecref(op); | |
| 535 | 535 | } | |
| 536 | 536 | ||
| 537 | - if (parameter.IsOut || isOut) | ||
| 537 | + if (isOut) | ||
| 538 | 538 | { | |
| 539 | 539 | outs++; | |
| 540 | 540 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -761,7 +761,7 @@ def test_we_can_bind_to_encoding_get_string(): | |||
| 761 | 761 | read = 1 | |
| 762 | 762 | ||
| 763 | 763 | while read > 0: | |
| 764 | - read, _ = stream.Read(buff, 0, buff.Length) | ||
| 764 | + read = stream.Read(buff, 0, buff.Length) | ||
| 765 | 765 | temp = Encoding.UTF8.GetString(buff, 0, read) | |
| 766 | 766 | data.append(temp) | |
| 767 | 767 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments