Files
pybind11/include/pybind11
Zach DeVito 03874e3738 Fix leak in var arg handling
When using the mixed position + vararg path, pybind over inc_ref's
the vararg positions. Printing the ref_count() of `item` before
and after this change you see:

Before change:

```
refcount of item before assign 3
refcount of item after assign 5
```

After change
```
refcount of item before assign 3
refcount of item after assign 4
```
2017-12-23 18:53:26 -04:00
..
2017-08-14 11:40:38 -04:00
2017-09-19 23:16:45 -03:00
2017-12-23 18:53:26 -04:00