Skip to content

Merge to release again to fix demo performance issues #1751

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 34 commits into from
Feb 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
8a3fb40
Implement `random` module
malkoG Oct 26, 2019
908abef
Apply code review for test snippet
malkoG Dec 14, 2019
a20b6bf
Implement _random using the MT19937 algorithm
coolreader18 Feb 1, 2020
2fd9eb9
Add random.py from CPython 3.6
coolreader18 Feb 1, 2020
b40dcb7
Use random.Random in tempfile
coolreader18 Feb 1, 2020
a762bf8
Move gen_res53 to mersenne.rs
coolreader18 Feb 4, 2020
9abb258
Fix clippy warnings
coolreader18 Feb 4, 2020
c44f04b
Fallback exit code to 0 in case of overflow
arnavb Feb 4, 2020
4c49185
Have wasm/demo's "test" npm script build the demo in release mode
coolreader18 Feb 5, 2020
60037a2
Cache WASM dependencies
coolreader18 Feb 5, 2020
3960fb8
Merge pull request #1745 from arnavb/fix-exit-code
youknowone Feb 5, 2020
c435ba0
Merge pull request #1731 from RustPython/feature/implement-random
coolreader18 Feb 5, 2020
1bac582
&str::to_string -> &str::to_owned for literals
youknowone Feb 5, 2020
7d0d313
&str::to_string -> &str::to_owned for variables
youknowone Feb 5, 2020
78180ff
Merge pull request #1734 from youknowone/to-owned
youknowone Feb 5, 2020
9f5cd17
Add getset_descriptor
youknowone Feb 2, 2020
c3d5f6c
IntoPyGetterFunc, IntoPySetterFunc
youknowone Feb 2, 2020
ca55778
`&self` support for getter/setter
youknowone Feb 3, 2020
d1f9cb4
PySetResult and IntoPySetResult
youknowone Feb 3, 2020
226a2a6
VM polymorphism for getter and setter
youknowone Feb 3, 2020
23381b9
compatiibility for CPytthon descr_check
youknowone Feb 4, 2020
0aee78d
pyproperty generates PyGetSet instead of PyProperty
youknowone Feb 3, 2020
facabfe
Remove PropertyBuilder and add new_getset
youknowone Feb 5, 2020
58744df
Revert 08e66b5002f3a3a30db72b350b18c61d367ef1fc
youknowone Feb 1, 2020
c0b235e
cleanup property and get descriptor codes
youknowone Feb 2, 2020
429a276
Bump up to python 3.8 for Azure Pipelines
youknowone Jan 25, 2020
0f12db1
Merge pull request #1705 from youknowone/azure-38
youknowone Feb 5, 2020
e7ea486
Merge pull request #1738 from youknowone/getset
coolreader18 Feb 6, 2020
844b639
Fix SyntaxError initial value
youknowone Feb 5, 2020
6ddb690
Remove `_vm` parameter when it is not required
youknowone Feb 5, 2020
92cb58b
Remove `_vm` parameter - remove unused functions
youknowone Feb 6, 2020
7312e18
Merge pull request #1748 from youknowone/syntax-error
youknowone Feb 6, 2020
67f072d
Merge pull request #1749 from youknowone/_vm
youknowone Feb 6, 2020
f873c0e
Merge pull request #1746 from RustPython/coolreader18/wasm-test-produ…
coolreader18 Feb 6, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Cache cargo dependencies
uses: actions/cache@v1
with:
key: ${{ runner.os }}-wasm-${{ hashFiles('**/Cargo.lock') }}
path: target
restore-keys: |
${{ runner.os }}-wasm-
- name: install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: install geckodriver
Expand Down
11 changes: 1 addition & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading