You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: unsupported-features.md
+1
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ For more details on project status and issue prioritization, check out these vid
37
37
- to cut down execution times, [set Python breakpoints](https://youtu.be/80ztTXP90Vs?t=42) using `#break` comments
38
38
- asynchronous code
39
39
- random number generators and user input (via input() or raw_input()) [sometimes don't work well together](https://github.com/pgbovine/OnlinePythonTutor/issues/110)
40
+
- you can't rely on the behavior of id() matching CPython; note that when teaching beginners, you shouldn't rely on id() since oftentimes these behaviors aren't part of the Python language spec (they're due to implementation-specific optimizations).
40
41
- no 3rd-party library/module support: use the experimental "Python 3.6 with <ahref="https://docs.anaconda.com/anaconda/">Anaconda</a>" mode if you want to import many more modules from the Anaconda distribution
41
42
- (note: remember that Python 2 and 3 support slightly different kinds of language constructs)
0 commit comments