Fix Python negative unsigned default values

Closes #993
This commit is contained in:
William S Fulton 2017-05-20 23:57:15 +01:00
commit 81ba06e59e
4 changed files with 11 additions and 0 deletions

View file

@ -2115,6 +2115,8 @@ public:
case 'u':
case 'U':
if (value < 0)
fail = true;
break;
default: