File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change 1313# limitations under the License.
1414
1515from datetime import datetime , timedelta
16- import logging
1716import time
1817import six
19- import warnings
2018
2119from cassandra .cqlengine import UnicodeMixin
2220from cassandra .cqlengine .functions import QueryValue
2321from cassandra .cqlengine .operators import BaseWhereOperator , InOperator
2422
25- log = logging .getLogger (__name__ )
26-
2723
2824class StatementException (Exception ):
2925 pass
@@ -295,11 +291,6 @@ def update_context(self, ctx):
295291 ctx [str (ctx_id )] = self ._to_database (self ._assignments )
296292 ctx_id += 1
297293 if self ._prepend is not None :
298- msg = "Previous versions of cqlengine implicitly reversed prepended lists to account for CASSANDRA-8733. " \
299- "THIS VERSION DOES NOT. This warning will be removed in a future release."
300- warnings .warn (msg )
301- log .warning (msg )
302-
303294 ctx [str (ctx_id )] = self ._to_database (self ._prepend )
304295 ctx_id += 1
305296 if self ._append is not None :
You can’t perform that action at this time.
0 commit comments