Content-Length: 478152 | pFad | http://github.com/RustPython/RustPython/pull/533/commits/291dba6bb61708863980da2e859318b0227beef6

63 Update the demo page and docs website. by windelbouwman · Pull Request #533 · RustPython/RustPython · GitHub
Skip to content

Update the demo page and docs website. #533

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 650 commits into from
Feb 24, 2019
Merged
Changes from 1 commit
Commits
Show all changes
650 commits
Select commit Hold shift + click to select a range
8cc2d5f
Move implementation of CodeObject after Instructions.
cthulahoops Feb 11, 2019
8a89e13
Add .co_consts to code class.
cthulahoops Feb 11, 2019
a735bb3
Add __repr__ and __new__ to NoneType.
cthulahoops Feb 12, 2019
d86ffc4
Fixed the redundant_field_names clippy warnings
ZapAnton Feb 12, 2019
0d1b85a
Fixed the collapsible_if clippy warning
ZapAnton Feb 12, 2019
606ddd2
Fixed the needless_return clippy warnings
ZapAnton Feb 12, 2019
00cfa47
Fixed the should_implement_trait clippy warning
ZapAnton Feb 12, 2019
8b6d0b3
Fixed the op_ref clippy warning
ZapAnton Feb 12, 2019
6656916
Fixed the redundant_closure clippy warning
ZapAnton Feb 12, 2019
9144109
Fixed the useless_vec clippy warning
ZapAnton Feb 12, 2019
050bf45
Fixed the into_iter_on_ref clippy warning
ZapAnton Feb 12, 2019
45b9ef9
Fixed the op_ref clippy warnings
ZapAnton Feb 12, 2019
5fe3735
Fixed the match_bool clippy warning
ZapAnton Feb 12, 2019
291dba6
Fixed the toplevel_ref_arg clippy warning
ZapAnton Feb 12, 2019
3893098
Fixed the redundant_pattern_matching clippy warning
ZapAnton Feb 12, 2019
206ccc5
Fixed the len_without_is_empty clippy warning
ZapAnton Feb 12, 2019
ef65612
Fixed the clone_double_ref clippy warning
ZapAnton Feb 12, 2019
a0f1f51
Fixed the useless_asref clippy warnings
ZapAnton Feb 12, 2019
e8467c3
Fixed the redundant_closure clippy warning
ZapAnton Feb 12, 2019
08d767b
Fixed the unnecessary_mut_passed clippy warning
ZapAnton Feb 12, 2019
604883d
Fixed the len_zero clippy warning
ZapAnton Feb 12, 2019
0887b55
Add object.{__lt__, __le__, __gt__, __gt__}
janczer Feb 12, 2019
a75eea5
Merge pull request #446 from RustPython/none_str
windelbouwman Feb 12, 2019
2645bfd
Merge pull request #448 from ZapAnton/fix_clippy_warnings
windelbouwman Feb 12, 2019
17bde53
Add end kwarg to print function.
windelbouwman Feb 12, 2019
1ff1bcd
Fix the call __gt__
janczer Feb 12, 2019
9601673
Fix the reflections of methods lt, le, gt, ge
janczer Feb 12, 2019
9277e67
Add not_implemented to float.{__le__, __gt__, __ge__}
janczer Feb 12, 2019
de98ac6
Merge pull request #442 from OddCoincidence/float-parsing
windelbouwman Feb 12, 2019
e5af4ca
Merge pull request #424 from janczer/add_object_lt_le_gt_ge
windelbouwman Feb 12, 2019
a8f650b
Fix callable(), add tests.
adrian17 Feb 10, 2019
7b7aa13
microoptimize print (lock stdout, borrow strings)
silmeth Feb 12, 2019
3d17cc0
copy print() kwargs handling over to wasm_builtins
silmeth Feb 12, 2019
a2ab447
add tests of error handling for wrong types of print() kwargs
silmeth Feb 12, 2019
bd64869
fix None kwargs to print in vm and in wasm_builtins
silmeth Feb 12, 2019
ecfc70e
Add list.copy()
adrian17 Feb 12, 2019
c041c8c
Replaced cluttered match statements with if let
Feb 13, 2019
2041b7c
Fix int to float comparison
OddCoincidence Feb 13, 2019
4959def
Call wrap functions insted of magic
janczer Feb 13, 2019
5fd912b
Remove float comparisons from int.__eq__, add int.__ne__
OddCoincidence Feb 13, 2019
74c5d4d
Merge pull request #452 from matrizx/master
windelbouwman Feb 13, 2019
db7a64f
Merge pull request #451 from adrian17/list_copy
windelbouwman Feb 13, 2019
392262d
Merge pull request #454 from janczer/call_wrap_functions
windelbouwman Feb 13, 2019
9dc45fd
Implement os.name
yuvipanda Feb 13, 2019
252c3be
Add newline to os_info test file
yuvipanda Feb 13, 2019
c6c1e7f
Merge pull request #453 from OddCoincidence/int-float-comparison
rmliddle Feb 13, 2019
3d4fd5f
Merge pull request #456 from yuvipanda/os-name
rmliddle Feb 13, 2019
d07b3df
Add clear method to set
janczer Feb 13, 2019
b77165c
Fix fmt set.clear
janczer Feb 13, 2019
7dfb072
Change lambda parsing to be closer to Python grammar. Fixes #427
adrian17 Feb 13, 2019
21299ec
Refactor arg_check macro
adrian17 Feb 13, 2019
233242c
Merge pull request #429 from adrian17/master
cthulahoops Feb 13, 2019
b88b87f
Merge pull request #462 from adrian17/lambda_parsing
cthulahoops Feb 13, 2019
4453c3e
Create error types for parser and compiler
jordy25519 Feb 5, 2019
f0d7c2b
Fix test
jordy25519 Feb 13, 2019
a8873db
Merge pull request #460 from janczer/add_clear_method_set
windelbouwman Feb 13, 2019
116f5da
Merge pull request #450 from silmeth/microopt-print
windelbouwman Feb 13, 2019
d048d0a
Merge pull request #445 from RustPython/co_consts
windelbouwman Feb 13, 2019
995fac1
Remove stray file
jordy25519 Feb 13, 2019
ae8dc46
Allow compiling VM for wasm32-unknown-unknown
nhynes Feb 13, 2019
570b284
Fix tests
jordy25519 Feb 13, 2019
400ad80
fstrings
OddCoincidence Feb 14, 2019
33d272f
Merge pull request #464 from holygits/internal-error-types
windelbouwman Feb 14, 2019
7d743de
fix another edge case
OddCoincidence Feb 14, 2019
a97e05a
Add missing semicolon to Bytes rule
OddCoincidence Feb 14, 2019
4ca3d3b
Merge remote-tracking branch 'upstream/master' into fstrings
OddCoincidence Feb 14, 2019
bc4e48a
Fix tests
OddCoincidence Feb 14, 2019
f1654cb
Migrated the project to the Rust 2018 edition
ZapAnton Feb 13, 2019
518b371
Merge pull request #466 from OddCoincidence/fstrings
windelbouwman Feb 14, 2019
2a2ddff
Add complex methods real and imag
janczer Feb 14, 2019
d76c86e
Merge pull request #468 from janczer/add_complex_real_imag
windelbouwman Feb 14, 2019
89e947a
Fix typos
janczer Feb 14, 2019
358f9f7
Add remvoe to list object
janczer Feb 14, 2019
fb4d55b
Fix f-string edge case and add more tests
OddCoincidence Feb 15, 2019
c6ac393
Add {int,float}.{__radd__,__rsub__,__rmul__,__rtruediv__}
OddCoincidence Feb 15, 2019
ddbd7d7
Merge pull request #471 from OddCoincidence/fstring-fixes-and-tests
windelbouwman Feb 15, 2019
a2d4924
Merge pull request #469 from janczer/fix_typos
windelbouwman Feb 15, 2019
48032a5
Merge pull request #472 from OddCoincidence/int-float-rarithmetic
windelbouwman Feb 15, 2019
2ac195e
List remove, handle non exist element. Add new test
janczer Feb 15, 2019
83c4eda
Add set.union
palaviv Feb 15, 2019
23ef487
Add set.intersection
palaviv Feb 15, 2019
938688c
Add set.difference
palaviv Feb 15, 2019
49e10ed
Add set.symmetric_difference
palaviv Feb 15, 2019
412df74
set raises TypeError when unhashable element is passed in creation
palaviv Feb 15, 2019
1611aa4
Merge pull request #476 from palaviv/set-unhashable
windelbouwman Feb 15, 2019
a541b50
Merge branch 'master' into Add-set-funcs3
windelbouwman Feb 15, 2019
9e719b6
Move test to list.py
janczer Feb 15, 2019
b785960
Merge pull request #461 from adrian17/arg_check_refactor
windelbouwman Feb 15, 2019
2d22a88
Merge pull request #475 from palaviv/Add-set-funcs3
windelbouwman Feb 15, 2019
0c351ea
Remove support for module get_item
windelbouwman Feb 15, 2019
0c626dd
rename objstr::get_value_as_ref to objstr::borrow_value
silmeth Feb 15, 2019
8ed82a0
make big ints dividable if the result fits in a float
silmeth Feb 15, 2019
f45f307
Add copy method to list object
janczer Feb 15, 2019
1e92bb8
Fix fmt in set.copy
janczer Feb 15, 2019
4cfd3a1
get rid of unnecessary muts in objint::div_ints
silmeth Feb 15, 2019
4726d6b
Remove unwrap methods
janczer Feb 15, 2019
4a67bb9
stop dividing the divisor if the remainder already disappeared
silmeth Feb 15, 2019
c1f6d16
Change iterator to for loop
janczer Feb 15, 2019
b9daabf
Remove return, use function without closure
janczer Feb 15, 2019
4762d65
implement set.discard
evilpie Feb 15, 2019
7364866
Merge pull request #477 from RustPython/dict7
rmliddle Feb 16, 2019
5968c4d
convert f-string parser to state machine
OddCoincidence Feb 16, 2019
134c3b9
support format specs in f-strings
OddCoincidence Feb 16, 2019
0a70852
Merge pull request #478 from silmeth/int-division
windelbouwman Feb 16, 2019
ec6dc7c
Merge pull request #481 from evilpie/discard
windelbouwman Feb 16, 2019
eb55d20
Merge pull request #480 from janczer/fix_clippy_issues
windelbouwman Feb 16, 2019
26f9a7f
Merge pull request #483 from OddCoincidence/f-string-format-specs
windelbouwman Feb 16, 2019
163a131
Merge pull request #470 from janczer/add_remove_list
windelbouwman Feb 16, 2019
159daf0
Change scope from using set_item to set_attr.
windelbouwman Feb 16, 2019
bf19d65
Fix issue with equality
calixteman Feb 15, 2019
5d82e2c
Fix equality check in list_count, list_index and list_contains
calixteman Feb 16, 2019
117c6c8
Fix list_remove
calixteman Feb 16, 2019
dd6b5b9
Fix list_eq
calixteman Feb 16, 2019
93c184a
Fix fmt
calixteman Feb 16, 2019
5a154f9
Fix list & tuple equality
calixteman Feb 16, 2019
90184bc
Code coverage for RustPython
calixteman Feb 16, 2019
1e3c2fb
Try again
calixteman Feb 16, 2019
ce541a1
Remove parenthesis
calixteman Feb 16, 2019
31c5b5e
Workaround issue with grcov
calixteman Feb 16, 2019
2554174
Set up CI with Azure Pipelines
liranringel Feb 16, 2019
e86e108
Don't run tests in --release with code coverage
calixteman Feb 16, 2019
9b71608
Fix os_info.py to pass on windows
liranringel Feb 16, 2019
47e9548
Reuse and improve ergonomics of assert_raises utility
OddCoincidence Feb 16, 2019
6d646cc
Add a codecov badge
calixteman Feb 16, 2019
6851767
Fix RefCell borrowing errors
coolreader18 Feb 17, 2019
f55a8ea
Merge branch 'master' into wasm-vm-class
coolreader18 Feb 17, 2019
c83ff47
Fix error with new compile() and set_attr/item()
coolreader18 Feb 17, 2019
114d9df
Allow attributes to be used as decorators
OddCoincidence Feb 17, 2019
3e22c4f
Add print to default vm scope
coolreader18 Feb 17, 2019
a86069d
Store the WASM id in the VirtualMachine, add a (broken) fetch builtin
coolreader18 Feb 17, 2019
f00c3c8
Fix fetch builtin
coolreader18 Feb 17, 2019
a92f4bb
Merge pull request #487 from liranringel/azure-pipelines
windelbouwman Feb 17, 2019
9d218bf
Merge pull request #485 from calixteman/ccov
windelbouwman Feb 17, 2019
cb2a807
Merge pull request #486 from OddCoincidence/assert-raises
windelbouwman Feb 17, 2019
1af9cc0
Merge pull request #489 from OddCoincidence/decorator-paths
windelbouwman Feb 17, 2019
00bc9e9
Convert fetch to use wasm_bindgen_futures
coolreader18 Feb 17, 2019
d0b4751
Remove the VM pointer from the map when it's dropped
coolreader18 Feb 17, 2019
7405c84
Add some more options to fetch()
coolreader18 Feb 17, 2019
b043f21
Fix js_py_typeerror
coolreader18 Feb 17, 2019
b617309
Fix typo in codecov.io badge
calixteman Feb 17, 2019
416f088
Convert `ArrayBuffer`s and `TypedArray`s to Python bytearrays
coolreader18 Feb 17, 2019
fe3f45f
Implement remaining binop reverse fallbacks
OddCoincidence Feb 17, 2019
bead3f6
Fix conversion from ArrayBuffer, allow array_buffer in fetch
coolreader18 Feb 17, 2019
b310d5e
Use i-methods for in-place operations
OddCoincidence Feb 17, 2019
dcb29ab
Add list.__iadd__
OddCoincidence Feb 17, 2019
5244707
Add eval() method, rename run() to exec()
coolreader18 Feb 17, 2019
7abaea5
Micro-optimize list.__iadd__
OddCoincidence Feb 17, 2019
74e7131
Clean up some code
coolreader18 Feb 18, 2019
101ee77
Improve error messages
coolreader18 Feb 18, 2019
afabde2
coverage: try deleting old gcda files
OddCoincidence Feb 18, 2019
ddc7da4
Add test for in-place ops
OddCoincidence Feb 18, 2019
0d3d090
Convert pyEval to use a WASM VM, allowing closures and stuff
coolreader18 Feb 18, 2019
71f32ee
Merge pull request #491 from calixteman/fix_ccov_badge
windelbouwman Feb 18, 2019
70d5cdb
Merge pull request #492 from OddCoincidence/inplace-ops
windelbouwman Feb 18, 2019
a47e979
Merge branch 'master' into add_list_copy
windelbouwman Feb 18, 2019
43d9fc5
Merge branch 'master' into fix_equality
windelbouwman Feb 18, 2019
16832c8
Merge pull request #479 from calixteman/fix_equality
windelbouwman Feb 18, 2019
fcea845
Merge pull request #473 from janczer/add_list_copy
windelbouwman Feb 18, 2019
85110f6
Add dict.clear and bytes.clear
janczer Feb 18, 2019
58369b6
Delete unnessesary code from dict.clear
janczer Feb 18, 2019
634571f
Remove WASM fetch builtin
coolreader18 Feb 18, 2019
e016b68
Document arg_check! macro a bit
adrian17 Feb 18, 2019
7965a63
Fix infinite loop when breaking from nested for loop
OddCoincidence Feb 19, 2019
d5c91a8
Move clear method from bytes to bytearray
janczer Feb 19, 2019
0cc898e
Updated Compilation phase to detect whether or not we are currently i…
chwoda1 Feb 19, 2019
6229efc
Updated Compilation phase to detect whether or not we are currently i…
chwoda1 Feb 19, 2019
724d9c6
Fixed Inheritance on String & BytesIO to reflect CPython
rmliddle Feb 19, 2019
ac95b61
Merge pull request #496 from adrian17/arg_check_comments
windelbouwman Feb 19, 2019
2963dd5
Change error to panic in bytearray.clear
janczer Feb 19, 2019
218cec9
Add KeyError to builtins
palaviv Feb 19, 2019
a451e4a
Hopefully fixed rustfmt issues
Feb 19, 2019
cd8c1ef
Merge pull request #494 from janczer/add_clear_dict_bytes
OddCoincidence Feb 19, 2019
8e5073e
Convert `bytes` and `bytearray`s to `Uint8Array`s
coolreader18 Feb 19, 2019
5b86b91
q!
chwoda1 Feb 20, 2019
d328042
Merge branch 'break-continue-fix' of https://github.com/crw5996/RustP…
chwoda1 Feb 20, 2019
9092d1f
Updated to fix corner case with inner function
chwoda1 Feb 20, 2019
7c06ced
Merge pull request #504 from palaviv/fix-key-error
OddCoincidence Feb 20, 2019
53bcd04
Merge pull request #499 from RustPython/break-from-nested-for-loops
OddCoincidence Feb 20, 2019
9face19
Fix continue statement
OddCoincidence Feb 20, 2019
bfdb82b
Add pop to bytearray
janczer Feb 19, 2019
24176f7
Add more test for bytearray.pop and fix the panic message
janczer Feb 20, 2019
51f6ec2
Add checking if value more then 255 in bytearraya
janczer Feb 20, 2019
2ad4ddd
README Update
rmliddle Feb 20, 2019
3bb00fa
Merge pull request #505 from RustPython/fix-continue
rmliddle Feb 20, 2019
6be7623
Spelling Fix
rmliddle Feb 20, 2019
f588f58
Merge pull request #503 from janczer/add_pop_bytearray
OddCoincidence Feb 20, 2019
b8cb9f7
Merge branch 'master' into add_check_byte_value
OddCoincidence Feb 20, 2019
32daf63
Merge pull request #507 from rmliddle/develop
windelbouwman Feb 20, 2019
b7dfbeb
Merge pull request #500 from crw5996/break-continue-fix
windelbouwman Feb 20, 2019
a2ff87b
Merge pull request #506 from janczer/add_check_byte_value
windelbouwman Feb 20, 2019
e058179
Merge pull request #458 from ZapAnton/2018_edition
windelbouwman Feb 20, 2019
df76ffe
Replace most relative imports with 2018-style crate
OddCoincidence Feb 20, 2019
b833c08
Add bytearray.{lower, upper}
janczer Feb 19, 2019
dc3a44f
Merge pull request #502 from janczer/add_bytearray_lower_upper
OddCoincidence Feb 20, 2019
8c222af
Include details about thread_local! for WASM
coolreader18 Feb 21, 2019
4b03e6d
Add Display implementation for CodeObject.
cthulahoops Feb 21, 2019
5ebfd55
Add extremely minimal dis module.
cthulahoops Feb 21, 2019
0175780
py_module macro to make modules definitions more declarative.
cthulahoops Feb 21, 2019
727b895
Use py_module for math.
cthulahoops Feb 21, 2019
55148d7
Use py_module for random.
cthulahoops Feb 21, 2019
e2ee933
Merge pull request #514 from RustPython/joey/crate-imports
cthulahoops Feb 21, 2019
7e40b7f
Compile error message cleanup
OddCoincidence Feb 21, 2019
a89b059
Add set.pop
palaviv Feb 19, 2019
5f3664e
Add set.update
palaviv Feb 19, 2019
eec76ef
Don't require objtype import to use arg_check! macro
OddCoincidence Feb 21, 2019
a4b814e
Add set.intersection_update
palaviv Feb 21, 2019
1621d78
Add set.difference_update
palaviv Feb 21, 2019
21b6616
Add set.symmetric_difference_update
palaviv Feb 21, 2019
0c1057f
Added real/imag attributes to int type.
AdamGS Feb 21, 2019
852dd10
Added tests to imag/real attributes.
AdamGS Feb 21, 2019
7dfd8f0
Merge pull request #515 from RustPython/joey/compile-error-cleanup
windelbouwman Feb 21, 2019
1d3db31
Merge pull request #512 from RustPython/mod_dis
windelbouwman Feb 21, 2019
2c1afc4
Merge pull request #513 from RustPython/py_module_macro
windelbouwman Feb 21, 2019
81a9e69
Changed syntax in testutils.py that is introduced in 3.6 to a backwar…
AdamGS Feb 21, 2019
5bd2db8
Merge pull request #516 from RustPython/joey/argcheck-objtype
windelbouwman Feb 21, 2019
565023f
Merge pull request #518 from AdamGS/add_int_attributes
windelbouwman Feb 21, 2019
7dd1eec
Merge pull request #517 from palaviv/set-more-funcs
windelbouwman Feb 21, 2019
365680c
Changed to syntax RustPython supports.
AdamGS Feb 21, 2019
999ca43
Fixed typo.
AdamGS Feb 21, 2019
d420c7f
dis - use py_module.
cthulahoops Feb 21, 2019
2c97a50
sys - use py_module.
cthulahoops Feb 21, 2019
2ab90b2
Fix unused variable warning in objint.
cthulahoops Feb 21, 2019
0cbcc70
builtins - use py_module.
cthulahoops Feb 21, 2019
8f37b9f
Merge pull request #519 from AdamGS/testutil_back_comp
OddCoincidence Feb 21, 2019
38b4c10
Added the ability to do addition between complex numbers and ints.
AdamGS Feb 22, 2019
b518867
fix typos
chapeupreto Feb 22, 2019
c22fb58
Merge pull request #521 from chapeupreto/patch-1
OddCoincidence Feb 22, 2019
9e17690
Use crate:: imports
coolreader18 Feb 22, 2019
f333c75
Added the ability to do addition between complex numbers and ints.
AdamGS Feb 22, 2019
7cf2544
Add set.__iter__
palaviv Feb 22, 2019
fc10560
Add set.{__ior__,__iand__,__isub__,__ixor__}
palaviv Feb 22, 2019
2df7414
Merge pull request #523 from AdamGS/complex_and_ints_addition
OddCoincidence Feb 22, 2019
2d19486
Merge pull request #520 from RustPython/py_module
windelbouwman Feb 22, 2019
65857e7
Merge
coolreader18 Feb 23, 2019
955d0b3
Merge branch 'master' into wasm-vm-class
coolreader18 Feb 23, 2019
7fa0a0c
Fix open in new make_module
coolreader18 Feb 23, 2019
09e2a7a
Add js_name for .set_stdout()
coolreader18 Feb 23, 2019
e0f222c
Don't hold on to a PyObjectRef from a python -> js closure
coolreader18 Feb 23, 2019
3f8f0e2
Merge pull request #524 from palaviv/Improve-set-5
windelbouwman Feb 23, 2019
b15ade1
Merge pull request #267 from coolreader18/wasm-vm-class
windelbouwman Feb 23, 2019
7032de9
Merge pull request #311 from nhynes/compile-wasm
windelbouwman Feb 23, 2019
b530733
Add assertRaises context manager to testutils
palaviv Feb 23, 2019
c675a59
Merge pull request #526 from palaviv/assertRaises
windelbouwman Feb 23, 2019
d02e835
Allow for multiple demo snippets to be selected
coolreader18 Feb 23, 2019
4dde810
Move snippets directory
coolreader18 Feb 23, 2019
b89d95c
Add fizzbuzz demo
coolreader18 Feb 23, 2019
6e8b88e
Add mandelbrot snippet
coolreader18 Feb 23, 2019
d44f1b3
Merge pull request #528 from coolreader18/multiple-demo-snippets
windelbouwman Feb 23, 2019
f4e6e5d
Addred real property and is_integer function to float.
AdamGS Feb 24, 2019
cbcf7c3
Merge pull request #534 from AdamGS/new_float_attributes
OddCoincidence Feb 24, 2019
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
Prev Previous commit
Next Next commit
Fixed the toplevel_ref_arg clippy warning
  • Loading branch information
ZapAnton committed Feb 12, 2019
commit 291dba6bb61708863980da2e859318b0227beef6
2 changes: 1 addition & 1 deletion vm/src/obj/objrange.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ pub fn get_value(obj: &PyObjectRef) -> RangeType {
}

pub fn init(context: &PyContext) {
let ref range_type = context.range_type;
let range_type = &context.range_type;

let range_doc = "range(stop) -> range object\n\
range(start, stop[, step]) -> range object\n\n\
Expand Down








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/RustPython/RustPython/pull/533/commits/291dba6bb61708863980da2e859318b0227beef6

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy