forked from pyjs/original-pyjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILTINS.TODO
More file actions
45 lines (39 loc) · 735 Bytes
/
BUILTINS.TODO
File metadata and controls
45 lines (39 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
This is an ongoing and rather large bugreport, #234
http://code.google.com/p/pyjamas/issues/detail?id=234
so the list is maintained here
Python builtins missing under pyjs:
Easy to implement:
apply (somewhat deprecated)
basestring (String should do the job?)
bin (new in 2.6)
bytes (alias to str in 2.6)
globals
next
print (under from __future__ import print_function)
Requive work to implement:
buffer (deprecated, irrelevant)
bytearray (new in 2.6)
coerce (somewhat deprecated)
complex
format
id
intern
unichr
unicode
vars
Easy but not needed without interactive prompt:
copyright
credits
exit
help
license
quit
Very hard / impossible within PyJS:
compile
eval (very hard)
execfile (very hard)
file
input
open
raw_input
reload