Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

RustPython

Python3 interpreter written in Rust
Collective - Host: opensource - https://opencollective.com/rustpython - Code: https://github.com/RustPython

Merge pull request #3058 from youknowone/super-getattro

revise PySuper::getattro same as CPython super_getattro

github.com/RustPython/RustPython - 8077e986d75dd2a246fe72172ad1e660245f4db6 authored over 3 years ago
revise PySuper::getattro as CPython super_getattro

github.com/RustPython/RustPython - cfc5163bc214f4cc8c047c397ff7434f8fbc46d4 authored over 3 years ago
Merge pull request #3023 from Snowapril/syslog-module

Implement `syslog` module for unix

github.com/RustPython/RustPython - b12300e91296177026fbefdff8805fd2bddb772b authored over 3 years ago
Merge pull request #3075 from ConnorTroy/cmath-log-log10

Add cmath log() and log10() methods

github.com/RustPython/RustPython - cf6d3c452c749fcffc3f41678cc98603542eae47 authored over 3 years ago
Update what is left results

github.com/RustPython/rustpython.github.io - 08ed5cc0e790678c12e34dfd9d4c7328a1f88565 authored over 3 years ago
Change pathconf/fpathconf wrapper to return c_long

github.com/RustPython/RustPython - 39d3e32a507a26922860ac6be5d76e12a86abedf authored over 3 years ago
add syslog module implementation

This commit implement syslog module using libc crate.
Implementation largely referenced on cpyth...

github.com/RustPython/RustPython - 9c6cbbeba3928a8392698610c8502d45de2af1e4 authored over 3 years ago
keep syslog ident matches to last opened syslog

github.com/RustPython/RustPython - 4ff6caa79a6ab2d3c5d32346bada084e9edbfedb authored over 3 years ago
add expected failure on fail test

Signed-off-by: snowapril <[email protected]>

github.com/RustPython/RustPython - 358bf1e5621ade18139383d3abfd33be8d3b7fa6 authored over 3 years ago
add test_syslog.py from cpython 3.8

Signed-off-by: snowapril <[email protected]>

github.com/RustPython/RustPython - c6a261085da91b02d97e51459b606a295206de8f authored over 3 years ago
Update cmath log10 docstring to match CPython

Co-authored-by: Jim Fasarakis-Hilliard <[email protected]>

github.com/RustPython/RustPython - 36fb58def62e6693105a1ac5f2f0c57b4cfa103e authored over 3 years ago
Update cmath log docstring to match CPython

Co-authored-by: Jim Fasarakis-Hilliard <[email protected]>

github.com/RustPython/RustPython - 9013505818d789edf7a19065ba7dadb98fe131a4 authored over 3 years ago
Fix compilation on platforms with i32 c_long

github.com/RustPython/RustPython - be3fd5d23cd5ccf259a1e9a1085d5b14726989cf authored over 3 years ago
Update test_cmath for log and log10 additions

github.com/RustPython/RustPython - 14c9744050aefeee6e8116e9d31d450c12f9a1a7 authored over 3 years ago
Add cmath log() and log10() methods

github.com/RustPython/RustPython - 6b79200f41de2107c65410b108346f0a07dd06ac authored over 3 years ago
Remove HEAPTYPE flag from builtins.

github.com/RustPython/RustPython - e34198fc008331b8f3cf9f335662266d98689d62 authored over 3 years ago
Merge pull request #3070 from youknowone/either-bytelike

Either<PyStrRef, ArgBytesLike> -> ArgStrOrBytesLike

github.com/RustPython/RustPython - 3c77d1443f71f7cb7033155e00e87f76b67928ab authored over 3 years ago
Merge pull request #3073 from qingshi163/array-tofile

Implement Array.tofile

github.com/RustPython/RustPython - c63591e17fc7eddbfcfa1054b34e9b76ad304986 authored over 3 years ago
unmark successful test

github.com/RustPython/RustPython - 52b7f3a5f7608c911bfc453bbb176ee76097afcc authored over 3 years ago
Impl array.tofile

github.com/RustPython/RustPython - dcb0698c992bc6632b37ec8cfb32e851f5eb6b31 authored over 3 years ago
Either<PyStrRef, ArgBytesLike> -> ArgStrOrBytesLike

github.com/RustPython/RustPython - 2a2a9636f5f501fa19ae9c2f1f86ddd8f17a011f authored over 3 years ago
Merge pull request #3068 from youknowone/char_all

PyStr::char_all: refactor application of function on all characters

github.com/RustPython/RustPython - 4d5c66cc9d07ef12cbab6302bbef2e88b14bfb75 authored over 3 years ago
Merge pull request #3069 from youknowone/either-option

replace Either usage to Option

github.com/RustPython/RustPython - 80b9e2c3c2b480cfa2aa3899c3b990198d2c4844 authored over 3 years ago
Merge pull request #3071 from fanninpm/master-what-master

Replace `master` with `main`

github.com/RustPython/RustPython - cdc92b89a9361be2f7cca228b60316d0a21cc486 authored over 3 years ago
Replace `master` with `main`

Fixes #3067

github.com/RustPython/RustPython - 0ea56025ec86506ef91281b69e2e9421e9ab8769 authored over 3 years ago
replace Either usage to Option

github.com/RustPython/RustPython - 4f4e03206bf2d4c063d458089d7995d9c2862ec6 authored over 3 years ago
Merge pull request #3066 from youknowone/pystrkind

PyStrKind to optimize ascii strings

github.com/RustPython/RustPython - 186d2a45a20245dec5ea773f062dada327da3cde authored over 3 years ago
split PyStrKind / PyStrKindData

github.com/RustPython/RustPython - 4d65ed59a977139bb7fccd8304da92b3d32bc639 authored over 3 years ago
Merge pull request #3043 from youknowone/pybuffer2

subtle pybuffer updates

github.com/RustPython/RustPython - 13e901c6f07ba024293160f6264325ede3c52541 authored over 3 years ago
Merge pull request #3011 from youknowone/fix-derive-error

Better error messages for macros.

github.com/RustPython/RustPython - 7761845051300698306fc8f0e602667730c432e5 authored over 3 years ago
PyMemoryView::getitem_slice reuse common convert_slice

github.com/RustPython/RustPython - 5befe49cd988cf5dd8999c247d351bdd7392a0cc authored over 3 years ago
memoryview validation tool

they will be only activated on debug build

github.com/RustPython/RustPython - 6a309cb8e4bdaeb4d667e4222b7f870369161410 authored over 3 years ago
clean up imports

github.com/RustPython/RustPython - 9189de38172c5a21cc17986f74488cea77ad4a1b authored over 3 years ago
io buffers use PyMemoryView::release

github.com/RustPython/RustPython - 9b822fa5a9cfb83157881e1dbc7426f88033f8ca authored over 3 years ago
better error for pyimpl(with)

github.com/RustPython/RustPython - ee995a9ca8d3d53163fa192c2df91c33d025bd17 authored over 3 years ago
Better error messages for pymethod and pyproperty

github.com/RustPython/RustPython - 458c4d4870c05db08a90890a748e650f994cb821 authored over 3 years ago
little bit better error message for signature error

github.com/RustPython/RustPython - 60fddd15537ef9651f31e05e5c6463d4b42f4e1e authored over 3 years ago
Impl array.fromfile (#3065)

github.com/RustPython/RustPython - c064118e6b0615de6f6ee6ff5422faf14b03b54f authored over 3 years ago
All exceptions are now modified with `extend_exception!` macro

github.com/RustPython/RustPython - b723bbfbb5af39de0231c16fc4acceec9293a51d authored over 3 years ago
Merge pull request #3029 from youknowone/pybuffer

Refactor PyBuffer

github.com/RustPython/RustPython - 00a86ba65ac8e15da3f9617955a8da7a7ab182a4 authored over 3 years ago
fix __new__ as bound method for every type

github.com/RustPython/RustPython - 00b33f80c8bc9ee5232a72d051133beea395c96e authored over 3 years ago
bring back tp_new_wrapper

github.com/RustPython/RustPython - 897a7b0a6eb22efb92842b252af78f0bb205e809 authored over 3 years ago
Merge pull request #3062 from youknowone/fix-derive-pyclass-err

better error for wrong py* attributes in pyclass

github.com/RustPython/RustPython - 76bb68a2d0d94f7dae63adcbe46c647c25b9a97f authored over 3 years ago
Merge pull request #3063 from DimitrisJim/text_signature_enchancement

Add $module for function text signatures.

github.com/RustPython/RustPython - 1dd1f50af887e1edf063acda63c8fc611cf35087 authored over 3 years ago
make magic method new to follow cpython way

github.com/RustPython/RustPython - 1c7509a43dc69b3092c6721f9b0829cae8d04b65 authored over 3 years ago
Add 'module' at start of function signature.

github.com/RustPython/RustPython - e846b82bf5b1e363701c5637a335a9f3f681c22c authored over 3 years ago
Merge pull request #3061 from youknowone/type-test

type test for __new__

github.com/RustPython/RustPython - 69701d142276f15713305d614a61d8ac9e8174ab authored over 3 years ago
type test for __new__

github.com/RustPython/RustPython - 24168791af26e1c3173aa91ed532836fad2ce371 authored over 3 years ago
better error for wrong py* attributes in pyclass

github.com/RustPython/RustPython - d8e43b292d13ba0ef0e8e5958af6466ab3cd57ad authored over 3 years ago
Merge pull request #3059 from eldpswp99/add-super-test

Add test_super from CPython 3.8

github.com/RustPython/RustPython - 1a39cbc7523676faa93121836f4620fa133eff1e authored over 3 years ago
Implemented sin and cos (#3056)

Implemented sin and cos

github.com/RustPython/RustPython - 97f9390308c5f0a6b2efcc1986bc7463eee4f1a0 authored over 3 years ago
add TODO:RUSTPYTHON

github.com/RustPython/RustPython - cd9b4946fed06f0be02b4c2e8bcf234b4b14b305 authored over 3 years ago
add super test by CPython 3.8

github.com/RustPython/RustPython - 72be296c1d47f39a51fb6d5292b0203652d7e580 authored over 3 years ago
Merge pull request #3042 from fanninpm/uu-encoding

Add uuencoding/decoding code to binascii.rs

github.com/RustPython/RustPython - 3406daf0cc676acd3ee361b665df411159e969c1 authored over 3 years ago
Clean up binascii.rs

github.com/RustPython/RustPython - c08562c4c198c18fe4eab0faf6d8252fd6b46cff authored over 3 years ago
Add uuencoding/decoding code to binascii.rs

The code is based on the PyPy implementation. It may not work properly.

github.com/RustPython/RustPython - 77fd1237b2e2e949df7156282fd499475f2301b7 authored over 3 years ago
Unmark passing tests in test_uu

github.com/RustPython/RustPython - 360e0dd8a31488c6007d6bb05b37563a708e7038 authored over 3 years ago
Merge pull request #3055 from DimitrisJim/fix_duplicate_entry

Remove duplicate entry for warnoptions.

github.com/RustPython/RustPython - c4949f99cc6258a4813d582f10df9eb5bc5d7cd5 authored over 3 years ago
Remove duplicate entry for warnoptions.

github.com/RustPython/RustPython - 8d456545953b4ec0f3936a47cc2c52b3ce885afb authored over 3 years ago
Merge pull request #3047 from Codemonk-adi/main

Implemented sqrt for cmath

github.com/RustPython/RustPython - a006aade5d5a412de4d66085ac50fd9a29c631e3 authored over 3 years ago
Merge pull request #3051 from DimitrisJim/sig_for_bltins

Try to generate a text signature template for both methods and functions

github.com/RustPython/RustPython - aae20e32100781d9bc225ee7f54ec5507a9294bf authored over 3 years ago
Allow sqrt to run some tests.

github.com/RustPython/RustPython - 632f73b79adce9291028bbb9b813ada4aac51505 authored over 3 years ago
Update vm/src/stdlib/cmath.rs

Co-authored-by: Jim Fasarakis-Hilliard <[email protected]>

github.com/RustPython/RustPython - 4cc160eafebafffe8d2ca87e62deb15eab3994a0 authored over 3 years ago
Implemented sqrt for cmath

github.com/RustPython/RustPython - 75a9413e22c6710d0f1cd6b29b339311b642c273 authored over 3 years ago
Try and generate a text signature template for both methods and functions.

github.com/RustPython/RustPython - c063fc3d64422248888d4ec66d1b09adcb779132 authored over 3 years ago
unmark successful tests

github.com/RustPython/RustPython - f2ecab46efcd03c6ee0371ac296f470dec8cc537 authored over 3 years ago
PyBuffer overhaul

PyBuffer doesn't require vtable access for options
maintaining internal using manual Rc model

github.com/RustPython/RustPython - f7289ddabd421b149c1b8c0f49c3d736100e2653 authored over 3 years ago
Merge pull request #3049 from youknowone/no-ssl

remove '--features=ssl' from debugger config

github.com/RustPython/RustPython - 5033540c929b316327af241e5cdb32d21d38696b authored over 3 years ago
remove '--features=ssl' from debugger config

github.com/RustPython/RustPython - fd41cf914fd9a4a859e371f32ab7bcc14d14f0e3 authored over 3 years ago
revert git-add from precommit

github.com/RustPython/RustPython - a3bee931e74547b3ceeec13c57037132c0edbc6f authored over 3 years ago
Merge pull request #3044 from RustPython/redox-times

Redox does not have libc::times or libc::nice

github.com/RustPython/RustPython - 5720d41107f4edd0015ac45b8d4db778d31f0013 authored over 3 years ago
Redox does not have libc::times or libc::nice

github.com/RustPython/RustPython - 01f5020f6a13357f605b1b9bd4474e32212cca6d authored over 3 years ago
add precommit which runs fmt

github.com/RustPython/RustPython - 8c912699774fad4400e04c821aa4fee7e1405988 authored over 3 years ago
Merge pull request #3041 from RustPython/upd-rustyline

Update rustyline to 9.0

github.com/RustPython/RustPython - e0f3f1983c85769ca1f7142a1ffdbbeca47a6321 authored over 3 years ago
Merge pull request #3040 from DimitrisJim/refactor_optionals

Clean up more instances of matching on Optional.

github.com/RustPython/RustPython - 0a690634c23bb07b3ea56ecf1c262e2d9dfc2d83 authored over 3 years ago
Remove unnecessary redox patches

github.com/RustPython/RustPython - 61749bf4cf1c7222e5b4a08df8211deb428829e2 authored over 3 years ago
Clean up more instances of matching on Optional.

github.com/RustPython/RustPython - f1be6d5427c24fb7922718f8c8d6ab13a20a92ab authored over 3 years ago
Merge pull request #3037 from owljoa/fix-math-remainder-test

Fix failed test remainder in test_math

github.com/RustPython/RustPython - dcc8043edddea5d85e3cc96a7646c043060295ba authored over 3 years ago
Merge pull request #3038 from DimitrisJim/use_associated_consts

Use associated constants instead of module constants.

github.com/RustPython/RustPython - 478dce52b01fc09dc08dfa20182b81e5ac1e506b authored over 3 years ago
Reduce duplicated conditions

Co-authored-by: Jim Fasarakis-Hilliard <[email protected]>

github.com/RustPython/RustPython - 516df295d52171821096c273ddff1608c064f90b authored over 3 years ago
Use associated constants instead of module constants.

github.com/RustPython/RustPython - 166e69e731ccddb22794f8688a006111708a9a58 authored over 3 years ago
Merge pull request #3031 from DimitrisJim/cmath_impl

Add cmath module.

github.com/RustPython/RustPython - e8736b61353918069259b1130fae1f6d7b78dfd8 authored over 3 years ago
Skip failing tests.

github.com/RustPython/RustPython - 41f628a32adec8f810c304a3fa367e0aff6bdc8f authored over 3 years ago
fix failed test remainder in test_math

add conditions for below rules

1. remainder(x, inf) is x, for non-NaN non-infinite x
2. Accordi...

github.com/RustPython/RustPython - 1406f80c3c5949089a0589fa9a17161b7a839fb1 authored over 3 years ago
Merge pull request #3036 from youknowone/os-comment

implementation comments for os utility

github.com/RustPython/RustPython - 47056f5ee75f8ccae390d96bbf7ecb4b7befca7d authored over 3 years ago
implementation comments for os utility

github.com/RustPython/RustPython - 2b15bf184487cfd7aa1900bee1c3a0e6a3050e7f authored over 3 years ago
Merge pull request #3032 from fanninpm/fix-codecs-cp-utf8

Fix comparison in codecs.rs that always failed

github.com/RustPython/RustPython - f6db9188a3b38cc5a45eb78241526180c967fcb6 authored over 3 years ago
Merge pull request #3035 from fanninpm/binascii-error-incomplete

Add binascii.Error and binascii.Incomplete

github.com/RustPython/RustPython - 0a0ad746991a7cb3e87534ce3bb47040a1a62e60 authored over 3 years ago
Update what is left results

github.com/RustPython/rustpython.github.io - 6bde79ea92c7feacc905279281e3bf368116b11e authored over 3 years ago
Unmark passing tests in test_base64

github.com/RustPython/RustPython - 8cab41f2a799a49b45ec9c008d5e963e3b587fd5 authored over 3 years ago
Skip panicking test in test_base64

github.com/RustPython/RustPython - a92d3e928130aaa633b0dfc3ff53f44cf987b68c authored over 3 years ago
Unmark passing test(s) in test_binascii

github.com/RustPython/RustPython - 165ea9415f7ef750de0fa330441df11fa1814f32 authored over 3 years ago
Add binascii.Error and binascii.Incomplete

github.com/RustPython/RustPython - ef3d3a7298ee0f30d16e75a7e6af4d11c9c706d9 authored over 3 years ago
Fix comparison in codecs.rs that always failed

github.com/RustPython/RustPython - d04b52d43e10b6cc7946b07dc8d7674725a558f6 authored over 3 years ago
Merge pull request #3027 from deantvv/scandir-args-support

os: scandir add argument support

github.com/RustPython/RustPython - e3fe1148ecda17883b4d3c3306142983bd89dadf authored over 3 years ago
Add test_cmath from CPython 3.8.

github.com/RustPython/RustPython - ec7386e1ff65e623b51a3da96b0498a84179a01b authored over 3 years ago
Add scaffold for cmath module.

github.com/RustPython/RustPython - e56ca82f727b361583913e076189b0e2b19ce3d5 authored over 3 years ago