File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
python/ql/lib/semmle/python Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 11import python
22
33/** Retained for backwards compatibility use ClassObject.isIterator() instead. */
4- predicate is_iterator ( ClassObject c ) { c .isIterator ( ) }
4+ deprecated predicate is_iterator ( ClassObject c ) { c .isIterator ( ) }
55
66/** Retained for backwards compatibility use ClassObject.isIterable() instead. */
7- predicate is_iterable ( ClassObject c ) { c .isIterable ( ) }
7+ deprecated predicate is_iterable ( ClassObject c ) { c .isIterable ( ) }
88
99/** Retained for backwards compatibility use ClassObject.isCollection() instead. */
10- predicate is_collection ( ClassObject c ) { c .isCollection ( ) }
10+ deprecated predicate is_collection ( ClassObject c ) { c .isCollection ( ) }
1111
1212/** Retained for backwards compatibility use ClassObject.isMapping() instead. */
13- predicate is_mapping ( ClassObject c ) { c .isMapping ( ) }
13+ deprecated predicate is_mapping ( ClassObject c ) { c .isMapping ( ) }
1414
1515/** Retained for backwards compatibility use ClassObject.isSequence() instead. */
16- predicate is_sequence ( ClassObject c ) { c .isSequence ( ) }
16+ deprecated predicate is_sequence ( ClassObject c ) { c .isSequence ( ) }
1717
1818/** Retained for backwards compatibility use ClassObject.isContextManager() instead. */
19- predicate is_context_manager ( ClassObject c ) { c .isContextManager ( ) }
19+ deprecated predicate is_context_manager ( ClassObject c ) { c .isContextManager ( ) }
You can’t perform that action at this time.
0 commit comments