[PyCharm Tables] PY-77591 Added "is None"/"is not None" conditions to tables' filters #PY-77591 Fixed

(cherry picked from commit ad48262cab5d46f06b1ee7f72c764ee899f0c926)

GitOrigin-RevId: 75313468a9f205fce99fae1215399d32131626a5
This commit is contained in:
Natalia.Murycheva
2024-11-29 18:32:55 +01:00
committed by intellij-monorepo-bot
parent 785ae87864
commit c68e31976c

View File

@@ -1,6 +1,14 @@
# Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. # Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
import numpy as np import numpy as np
import io import io
try:
import tensorflow as tf
except ImportError:
pass
try:
import torch
except ImportError:
pass
TABLE_TYPE_NEXT_VALUE_SEPARATOR = '__pydev_table_column_type_val__' TABLE_TYPE_NEXT_VALUE_SEPARATOR = '__pydev_table_column_type_val__'
MAX_COLWIDTH = 100000 MAX_COLWIDTH = 100000