Changeset 56761 in vbox for trunk/src/VBox/ValidationKit/testmanager/core
- Timestamp:
- Jul 3, 2015 1:36:35 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101410
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/base.py
r56295 r56761 638 638 639 639 @staticmethod 640 def validateStr(sValue, cchMin = 0, cchMax = 4096, aoNilValues = tuple([None, '']), fAllowNull = True, fAllowUnicodeSymbols = False): # pylint: disable=C0301 640 def validateStr(sValue, cchMin = 0, cchMax = 4096, aoNilValues = tuple([None, '']), fAllowNull = True, 641 fAllowUnicodeSymbols = False): 641 642 """ Validates a string field. """ 642 643 if sValue in aoNilValues:
Note:
See TracChangeset
for help on using the changeset viewer.