commit | 00f84eb5710d85669f27e22b27aeea62d71ce2c7 | [log] [tgz] |
---|---|---|
author | Jean-Paul Calderone <exarkun@twistedmatrix.com> | Mon Apr 13 12:47:21 2015 -0400 |
committer | Jean-Paul Calderone <exarkun@twistedmatrix.com> | Mon Apr 13 12:47:21 2015 -0400 |
tree | bac86d7033529d75b311906cf7b78a85ef6d8bf2 | |
parent | 8654f785ccd96a0d6cfb33d521dd891a9178380d [diff] [blame] |
Unify the unspecified argument thing.
diff --git a/OpenSSL/_util.py b/OpenSSL/_util.py index 1eec17e..a4fe63a 100644 --- a/OpenSSL/_util.py +++ b/OpenSSL/_util.py
@@ -93,3 +93,8 @@ else: def byte_string(s): return s + + +# A marker object to observe whether some optional arguments are passed any +# value or not. +UNSPECIFIED = object()