Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 4 additions & 4 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ New Features
variable (GH-128).

- Under PR GH-101, the matching of sequence arguments to the parameters of
Java methods is improved. A Java varargs parameter does not match a final
sequence in the call if an array parameter could do so. (Thanks Peter
Holloway.)
Java methods is improved (and in constructors under GH-201). A Java
varargs parameter does not match a final sequence in the call if an array
parameter could do so. (Thanks Peter Holloway.)

- array.array itemsize of unsigned types is now the same as their signed
counterparts, where previously it was mostly double. Internal
Expand All @@ -39,7 +39,7 @@ New Features


Jython 2.7.3b2-DEV Bugs fixed
- [ GH- ]
- [ GH-201 ] Support vararg constructors

Jython 2.7.3b1 Bugs fixed
- [ GH-192 ] PyString with non-byte value in formatting of collections
Expand Down
2 changes: 1 addition & 1 deletion src/org/python/core/PyReflectedConstructor.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public PyReflectedConstructor(Constructor<?> c) {
}

private ReflectedArgs makeArgs(Constructor<?> m) {
return new ReflectedArgs(m, m.getParameterTypes(), m.getDeclaringClass(), true);
return new ReflectedArgs(m, m.getParameterTypes(), m.getDeclaringClass(), true, m.isVarArgs());
}

public void addConstructor(Constructor<?> m) {
Expand Down