Commit Graph

3579 Commits

Author SHA1 Message Date
Jeong YunWon
75ebaedaf1 Fix {bytes|bytearray}.{|r|l}strip 2020-04-11 22:22:33 +09:00
Jeong YunWon
fc2949c6fb Add bstr dependency 2020-04-11 22:20:38 +09:00
Aviv Palivoda
e960c4dd3f Use utility functions 2020-04-11 12:26:13 +03:00
Aviv Palivoda
bcf875b5ca Make PyByteArray ThreadSafe 2020-04-11 12:26:13 +03:00
Aviv Palivoda
6e89c6e014 Mark PyByteInner and PyBytes as ThreadSafe 2020-04-11 12:24:09 +03:00
Aviv Palivoda
2c5237bec8 Mark PyComplex as ThreadSafe 2020-04-11 12:24:09 +03:00
Aviv Palivoda
cd42d04922 Mark PyFloat as ThreadSafe 2020-04-11 12:24:09 +03:00
Aviv Palivoda
ad883375d7 Mark PyInt as ThreadSafe 2020-04-11 12:24:09 +03:00
Aviv Palivoda
bcd518633a Add ThreadSafe trait 2020-04-11 12:24:09 +03:00
Jeong YunWon
c7467e444d Merge pull request #1839 from RustPython/coolreader18/stdlib-json-py
Replace the json module with the Python implementation from CPython
2020-04-10 14:12:08 +09:00
Noah
9420622d6d Update chrono 2020-04-09 21:45:16 -05:00
Noah
3eb687d976 Merge pull request #1846 from RustPython/coolreader18/print-sys-stdout
Direct print() to sys.stdout
2020-04-08 13:29:35 -05:00
Noah
5e58b05a93 Fix subprocess.call 2020-04-08 12:16:19 -05:00
Noah
d5b0965479 Implement bytearray.decode 2020-04-08 12:16:19 -05:00
Noah
7ab9a641bc Remove the serde_json based json module, update tests 2020-04-08 12:16:19 -05:00
Noah
2cd42c58be Direct print() to sys.stdout 2020-04-08 12:10:00 -05:00
Noah
408032a015 Merge pull request #1842 from RustPython/coolreader18/callable-iter
Add iter(callable, sentinel)
2020-04-08 12:08:33 -05:00
Noah
fd3fcc2449 Add iter(callable, sentinel) 2020-04-08 10:10:56 -05:00
Jeong YunWon
e28ab72b4e Refactor and fix str/bytes count/find/index 2020-04-08 13:13:15 +09:00
Noah
f5de59a4bd Merge pull request #1834 from RustPython/coolreader18/jsontests
Add json output for CPython tests
2020-04-04 11:52:04 -05:00
Aviv Palivoda
b41943e080 Use vendored version of openssl 2020-04-04 13:49:07 +03:00
Noah
f33e2d3b39 Remove incognito from vm 2020-04-03 12:34:00 -05:00
Noah
be565d30ae Make incognito a CodeFlag bit 2020-04-03 12:34:00 -05:00
Noah
80f11466b3 Add "incognito" compilation 2020-04-03 12:34:00 -05:00
Noah
a104d43d7f Merge pull request #1811 from RustPython/coolreader18/typ-generic-pyobj
Make PyObject.typ a Rc<PyObject<PyClass>>
2020-04-03 12:20:37 -05:00
Noah
7143b93203 Rename into_generic_pyobj -> into_typed_pyobj 2020-04-03 11:43:07 -05:00
Jeong YunWon
a6b23129ea Merge pull request #1816 from RustPython/coolreader18/posonly-error
Error on positional-only parameters passed as keywords
2020-04-03 15:23:18 +09:00
Noah
652231a683 Error on positional-only parameters passed as keywords 2020-04-03 00:24:30 -05:00
Noah
807c84981c Fix typo
Co-Authored-By: Jeong YunWon <youknowone@users.noreply.github.com>
2020-04-03 00:12:59 -05:00
Jeong YunWon
91080470aa Merge pull request #1836 from RustPython/coolreader18/pyfunc-smallbox
Don't allocate for PyNativeFunc when it's just a fn pointer
2020-04-03 13:15:22 +09:00
Noah
dd92e90366 Add str.__format__ 2020-04-02 17:42:00 -05:00
Noah
53a6bc3f58 Add method.__func__ property 2020-04-02 17:41:52 -05:00
Noah
e2d7ab30aa Don't allocate for PyNativeFunc when it's just a fn pointer 2020-04-02 13:57:08 -05:00
Noah
bd1fdd4d90 Call __set_name__ on descriptors when initializing types 2020-04-02 12:29:20 -05:00
Noah
a901323777 Separate dict.__new__ to dict.__init__ for OrderedDict 2020-04-02 09:02:44 -05:00
Noah
6553bf72d4 Move varargs information into CodeFlags 2020-04-02 09:02:18 -05:00
Noah
c1c9631798 Merge pull request #1823 from RustPython/coolreader18/stdlib-ssl
Add the ssl stdlib module
2020-04-01 11:34:41 -05:00
Noah
7051b25d2a Manually error on embedded nul for set_ciphers 2020-03-31 22:40:42 -05:00
Noah
4fc45d2569 Add _SSLSocket.peer_certificate 2020-03-27 15:24:09 -05:00
Noah
4f64afb8cf Add ctx.load_verify_locations(cadata=), and ctx.get_ca_certs 2020-03-27 15:24:09 -05:00
Noah
12c57ce135 Add ssl.RAND_* functions 2020-03-27 15:24:08 -05:00
Noah
31905bd1ce Add OPENSSL_VERSION constants 2020-03-27 15:24:08 -05:00
Noah
588589865e Try a few things to make cert verification work 2020-03-27 15:24:08 -05:00
Noah
bea6e54a37 Make ssl work on windows 2020-03-27 15:24:08 -05:00
Noah
03ba022258 Don't use the matches!() macro 2020-03-27 15:24:08 -05:00
Noah
40835b19e6 Add _ssl stdlib module 2020-03-27 14:40:20 -05:00
Noah
a42e94b44f Add socket.getsockopt, impl io::{Read,Write} for PySocketRef 2020-03-27 14:40:20 -05:00
Noah
289311727b impl TryFromObject for CString 2020-03-27 14:40:20 -05:00
Noah
d243b73b67 Fix int.from_bytes() with an arbitrary iterator 2020-03-27 14:40:16 -05:00
Jeong YunWon
d148bdd46c Basic bound method repr 2020-03-28 02:05:58 +09:00