HomeSort by relevance Sort by last modified time
    Searched full:userstring (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/python/cpython3/Lib/test/
test_userstring.py 0 # UserString is a wrapper around the native builtin string type.
2 # UserString instances should behave similar to builtin string objects.
7 from collections import UserString
15 type2test = UserString
17 # Overwrite the three testing methods, because UserString
18 # can't cope with arguments propagated to UserString
23 # we don't fix the arguments, because UserString can't cope with it
32 # we don't fix the arguments, because UserString can't cope with it
39 # we don't fix the arguments, because UserString can't cope with it
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_userstring.py 2 # UserString is a wrapper around the native builtin string type.
3 # UserString instances should behave similar to builtin string objects.
7 from UserString import UserString, MutableString
17 type2test = UserString
19 # Overwrite the three testing methods, because UserString
20 # can't cope with arguments propagated to UserString
25 # we don't fix the arguments, because UserString can't cope with it
34 # we don't fix the arguments, because UserString can't cope with it
43 # we don't fix the arguments, because UserString can't cope with it
    [all...]
test_py3kwarn.py 411 # UserString.MutableString has been removed in 3.0.
412 import UserString
413 # UserString tests may have already triggered this warning
414 reset_module_registry(UserString)
418 self.assertRaises(DeprecationWarning, UserString.MutableString)
  /external/python/cpython2/Lib/test/
test_userstring.py 0 # UserString is a wrapper around the native builtin string type.
2 # UserString instances should behave similar to builtin string objects.
6 from UserString import UserString, MutableString
16 type2test = UserString
18 # Overwrite the three testing methods, because UserString
19 # can't cope with arguments propagated to UserString
24 # we don't fix the arguments, because UserString can't cope with it
33 # we don't fix the arguments, because UserString can't cope with it
40 # we don't fix the arguments, because UserString can't cope with i
    [all...]
test_py3kwarn.py 432 # UserString.MutableString has been removed in 3.0.
433 import UserString
434 # UserString tests may have already triggered this warning
435 reset_module_registry(UserString)
439 self.assertRaises(DeprecationWarning, UserString.MutableString)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_userstring.py 2 # UserString is a wrapper around the native builtin string type.
3 # UserString instances should behave similar to builtin string objects.
7 from UserString import UserString, MutableString
17 type2test = UserString
19 # Overwrite the three testing methods, because UserString
20 # can't cope with arguments propagated to UserString
25 # we don't fix the arguments, because UserString can't cope with it
34 # we don't fix the arguments, because UserString can't cope with it
43 # we don't fix the arguments, because UserString can't cope with i
    [all...]
test_py3kwarn.py 411 # UserString.MutableString has been removed in 3.0.
412 import UserString
413 # UserString tests may have already triggered this warning
414 reset_module_registry(UserString)
418 self.assertRaises(DeprecationWarning, UserString.MutableString)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_userstring.py 2 # UserString is a wrapper around the native builtin string type.
3 # UserString instances should behave similar to builtin string objects.
7 from UserString import UserString, MutableString
17 type2test = UserString
19 # Overwrite the three testing methods, because UserString
20 # can't cope with arguments propagated to UserString
25 # we don't fix the arguments, because UserString can't cope with it
34 # we don't fix the arguments, because UserString can't cope with it
43 # we don't fix the arguments, because UserString can't cope with i
    [all...]
test_py3kwarn.py 411 # UserString.MutableString has been removed in 3.0.
412 import UserString
413 # UserString tests may have already triggered this warning
414 reset_module_registry(UserString)
418 self.assertRaises(DeprecationWarning, UserString.MutableString)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_userstring.py 2 # UserString is a wrapper around the native builtin string type.
3 # UserString instances should behave similar to builtin string objects.
7 from UserString import UserString, MutableString
17 type2test = UserString
19 # Overwrite the three testing methods, because UserString
20 # can't cope with arguments propagated to UserString
25 # we don't fix the arguments, because UserString can't cope with it
34 # we don't fix the arguments, because UserString can't cope with it
43 # we don't fix the arguments, because UserString can't cope with i
    [all...]
test_py3kwarn.py 411 # UserString.MutableString has been removed in 3.0.
412 import UserString
413 # UserString tests may have already triggered this warning
414 reset_module_registry(UserString)
418 self.assertRaises(DeprecationWarning, UserString.MutableString)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_userstring.py 2 # UserString is a wrapper around the native builtin string type.
3 # UserString instances should behave similar to builtin string objects.
7 from UserString import UserString, MutableString
17 type2test = UserString
19 # Overwrite the three testing methods, because UserString
20 # can't cope with arguments propagated to UserString
25 # we don't fix the arguments, because UserString can't cope with it
34 # we don't fix the arguments, because UserString can't cope with it
43 # we don't fix the arguments, because UserString can't cope with i
    [all...]
test_py3kwarn.py 411 # UserString.MutableString has been removed in 3.0.
412 import UserString
413 # UserString tests may have already triggered this warning
414 reset_module_registry(UserString)
418 self.assertRaises(DeprecationWarning, UserString.MutableString)
  /external/python/cpython2/Doc/library/
userdict.rst 152 :mod:`UserString` --- Class wrapper for string objects
155 .. module:: UserString
163 This :class:`~UserString.UserString` class from this module is available for backward
166 from the built-in :class:`str` type instead of using :class:`~UserString.UserString` (there
178 The :mod:`UserString` module defines the following classes:
181 .. class:: UserString([sequence])
185 accessible via the :attr:`data` attribute of :class:`~UserString.UserString` instances. Th
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
UserString.py 11 __all__ = ["UserString","MutableString"]
13 class UserString(collections.Sequence):
17 elif isinstance(seq, UserString):
30 if isinstance(string, UserString):
44 if isinstance(other, UserString):
133 class MutableString(UserString, collections.MutableSequence):
143 from UserString and than forget thereby to remove (override) the
144 __hash__ method inherited from UserString. This would lead to
150 warnpy3k('the class UserString.MutableString has been removed in '
159 if isinstance(sub, UserString):
    [all...]
  /external/python/cpython2/Lib/
UserString.py 11 __all__ = ["UserString","MutableString"]
13 class UserString(collections.Sequence):
17 elif isinstance(seq, UserString):
30 if isinstance(string, UserString):
44 if isinstance(other, UserString):
133 class MutableString(UserString, collections.MutableSequence):
143 from UserString and than forget thereby to remove (override) the
144 __hash__ method inherited from UserString. This would lead to
150 warnpy3k('the class UserString.MutableString has been removed in '
159 if isinstance(sub, UserString)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
UserString.py 11 __all__ = ["UserString","MutableString"]
13 class UserString(collections.Sequence):
17 elif isinstance(seq, UserString):
30 if isinstance(string, UserString):
44 if isinstance(other, UserString):
133 class MutableString(UserString, collections.MutableSequence):
143 from UserString and than forget thereby to remove (override) the
144 __hash__ method inherited from UserString. This would lead to
150 warnpy3k('the class UserString.MutableString has been removed in '
159 if isinstance(sub, UserString)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
UserString.py 11 __all__ = ["UserString","MutableString"]
13 class UserString(collections.Sequence):
17 elif isinstance(seq, UserString):
30 if isinstance(string, UserString):
44 if isinstance(other, UserString):
133 class MutableString(UserString, collections.MutableSequence):
143 from UserString and than forget thereby to remove (override) the
144 __hash__ method inherited from UserString. This would lead to
150 warnpy3k('the class UserString.MutableString has been removed in '
159 if isinstance(sub, UserString)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserString.py 11 __all__ = ["UserString","MutableString"]
13 class UserString(collections.Sequence):
17 elif isinstance(seq, UserString):
30 if isinstance(string, UserString):
44 if isinstance(other, UserString):
133 class MutableString(UserString, collections.MutableSequence):
143 from UserString and than forget thereby to remove (override) the
144 __hash__ method inherited from UserString. This would lead to
150 warnpy3k('the class UserString.MutableString has been removed in '
159 if isinstance(sub, UserString)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserString.py 11 __all__ = ["UserString","MutableString"]
13 class UserString(collections.Sequence):
17 elif isinstance(seq, UserString):
30 if isinstance(string, UserString):
44 if isinstance(other, UserString):
133 class MutableString(UserString, collections.MutableSequence):
143 from UserString and than forget thereby to remove (override) the
144 __hash__ method inherited from UserString. This would lead to
150 warnpy3k('the class UserString.MutableString has been removed in '
159 if isinstance(sub, UserString)
    [all...]
  /external/python/cpython3/Lib/
_compat_pickle.py 71 ('UserString', 'UserString'): ('collections', 'UserString'),
183 'UserString': 'collections',
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/file/
AclEdit.java 126 String userString = result[index++]; remaining--;
147 lookupService.lookupPrincipalByGroupName(userString) :
148 lookupService.lookupPrincipalByName(userString);
152 userString);
155 System.err.format("Lookup of '%s' failed: %s\n", userString, x);
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/file/
AclEdit.java 126 String userString = result[index++]; remaining--;
147 lookupService.lookupPrincipalByGroupName(userString) :
148 lookupService.lookupPrincipalByName(userString);
152 userString);
155 System.err.format("Lookup of '%s' failed: %s\n", userString, x);
  /external/python/cpython3/Lib/collections/
__init__.py 13 * UserString wrapper around string objects for easier string subclassing
18 'UserString', 'Counter', 'OrderedDict', 'ChainMap']
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_imports.py 54 'UserString' : 'collections',

Completed in 1130 milliseconds

1 2 3