summarylogtreecommitdiffstats
path: root/sagemath-jedi-0.16.patch
blob: 083496fbf9e49bee90cc0f53d91f8cfbb23d278b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- a/src/sage/all.py
+++ b/src/sage/all.py
@@ -99,6 +99,11 @@ warnings.filterwarnings('ignore', category=DeprecationWarning,
 # However, be sure to keep OUR deprecation warnings
 warnings.filterwarnings('default', category=DeprecationWarning,
     message=r'[\s\S]*See https\?://trac\.sagemath\.org/[0-9]* for details.')
+# jedi 0.16 deprecation warnings
+warnings.filterwarnings('ignore', category=DeprecationWarning,
+    message='.*Use get_signatures().*')
+warnings.filterwarnings('ignore', category=DeprecationWarning,
+    message='.*Providing the .* is now done in the functions themselves.*')
 # Python 3.8 deprecation warnings
 warnings.filterwarnings('ignore', category=DeprecationWarning,
     message='.*PY_SSIZE_T_CLEAN.*')