Joey
|
eec76ef8e8
|
Don't require objtype import to use arg_check! macro
|
2019-02-21 08:38:02 -08:00 |
|
Adam
|
e2ee933256
|
Merge pull request #514 from RustPython/joey/crate-imports
Replace most relative imports with 2018-style crate imports
|
2019-02-21 15:29:38 +00:00 |
|
Joey
|
dc3a44f513
|
Merge pull request #502 from janczer/add_bytearray_lower_upper
Add bytearray.{lower, upper}
|
2019-02-20 15:49:50 -08:00 |
|
janczer
|
b833c08951
|
Add bytearray.{lower, upper}
|
2019-02-20 19:35:39 +01:00 |
|
Joey
|
df76ffe116
|
Replace most relative imports with 2018-style crate
|
2019-02-20 08:50:53 -08:00 |
|
Windel Bouwman
|
e058179b04
|
Merge pull request #458 from ZapAnton/2018_edition
Migrated the project to the Rust 2018 edition
|
2019-02-20 16:44:31 +01:00 |
|
Windel Bouwman
|
a2ff87b9d7
|
Merge pull request #506 from janczer/add_check_byte_value
Add checking if value more then 255 in bytearraya
|
2019-02-20 16:14:09 +01:00 |
|
Windel Bouwman
|
b7dfbebd2d
|
Merge pull request #500 from crw5996/break-continue-fix
Break continue fix
|
2019-02-20 16:12:57 +01:00 |
|
Windel Bouwman
|
32daf638dc
|
Merge pull request #507 from rmliddle/develop
Readme Update + Inheritance Fix on IO
|
2019-02-20 16:05:39 +01:00 |
|
Joey
|
b8cb9f73c5
|
Merge branch 'master' into add_check_byte_value
|
2019-02-20 06:40:58 -08:00 |
|
Joey
|
f588f58dd1
|
Merge pull request #503 from janczer/add_pop_bytearray
Add pop to bytearray
|
2019-02-20 06:33:10 -08:00 |
|
rmliddle
|
6be7623a94
|
Spelling Fix
|
2019-02-20 21:36:56 +11:00 |
|
Ryan Liddle
|
3bb00fa5db
|
Merge pull request #505 from RustPython/fix-continue
Fix continue statement
|
2019-02-20 21:10:45 +11:00 |
|
rmliddle
|
2ad4dddd16
|
README Update
|
2019-02-20 21:00:50 +11:00 |
|
janczer
|
51f6ec2325
|
Add checking if value more then 255 in bytearraya
|
2019-02-20 07:10:42 +01:00 |
|
janczer
|
24176f7bbb
|
Add more test for bytearray.pop and fix the panic message
|
2019-02-20 06:58:43 +01:00 |
|
janczer
|
bfdb82b5c1
|
Add pop to bytearray
|
2019-02-20 06:50:33 +01:00 |
|
Joey
|
9face190ab
|
Fix continue statement
|
2019-02-19 19:40:34 -08:00 |
|
Joey
|
53bcd04f8a
|
Merge pull request #499 from RustPython/break-from-nested-for-loops
Fix infinite loop when breaking from nested for loop
|
2019-02-19 18:33:11 -08:00 |
|
Joey
|
7c06cedf48
|
Merge pull request #504 from palaviv/fix-key-error
Add KeyError to builtins
|
2019-02-19 18:24:00 -08:00 |
|
chris
|
9092d1f30b
|
Updated to fix corner case with inner function
|
2019-02-19 21:11:50 -05:00 |
|
chris
|
d3280429db
|
Merge branch 'break-continue-fix' of https://github.com/crw5996/RustPython into break-continue-fix
|
2019-02-19 21:03:15 -05:00 |
|
chris
|
5b86b918f1
|
q!
Merge branch 'master' of https://github.com/RustPython/RustPython into break-continue-fix
|
2019-02-19 20:47:49 -05:00 |
|
Joey
|
cd8c1efb6b
|
Merge pull request #494 from janczer/add_clear_dict_bytes
Add dict.clear and bytes.clear
|
2019-02-19 15:46:32 -08:00 |
|
Chris Wood
|
a451e4a5b3
|
Hopefully fixed rustfmt issues
|
2019-02-19 14:48:23 -05:00 |
|
Aviv Palivoda
|
218cec98cb
|
Add KeyError to builtins
|
2019-02-19 21:38:39 +02:00 |
|
janczer
|
2963dd5b66
|
Change error to panic in bytearray.clear
|
2019-02-19 20:38:38 +01:00 |
|
Windel Bouwman
|
ac95b61e3e
|
Merge pull request #496 from adrian17/arg_check_comments
Document arg_check! macro a bit
|
2019-02-19 17:42:47 +01:00 |
|
rmliddle
|
724d9c6dcb
|
Fixed Inheritance on String & BytesIO to reflect CPython
|
2019-02-19 20:41:43 +11:00 |
|
chris
|
6229efca24
|
Updated Compilation phase to detect whether or not we are currently inside of a loop or not. This is useful to determine whether or not we can use looping specific keywords such as break or continue.
|
2019-02-19 02:19:14 -05:00 |
|
chris
|
0cc898e19d
|
Updated Compilation phase to detect whether or not we are currently inside of a loop or not. This is useful to determine whether or not we can use looping specific keywords such as break or continue.
|
2019-02-19 02:18:52 -05:00 |
|
janczer
|
d5c91a8de0
|
Move clear method from bytes to bytearray
|
2019-02-19 07:11:13 +01:00 |
|
Joey Hain
|
7965a63ba9
|
Fix infinite loop when breaking from nested for loop
|
2019-02-18 18:07:35 -08:00 |
|
Adrian Wielgosik
|
e016b68552
|
Document arg_check! macro a bit
|
2019-02-18 19:59:28 +01:00 |
|
janczer
|
58369b6fbc
|
Delete unnessesary code from dict.clear
|
2019-02-18 18:45:49 +01:00 |
|
janczer
|
85110f6fbf
|
Add dict.clear and bytes.clear
|
2019-02-18 18:21:39 +01:00 |
|
Windel Bouwman
|
fcea8455fa
|
Merge pull request #473 from janczer/add_list_copy
Add copy method to set object
|
2019-02-18 10:50:20 +01:00 |
|
Windel Bouwman
|
16832c8f8c
|
Merge pull request #479 from calixteman/fix_equality
Fix issue with equality
|
2019-02-18 10:49:36 +01:00 |
|
Windel Bouwman
|
43d9fc5dc0
|
Merge branch 'master' into fix_equality
|
2019-02-18 08:12:12 +01:00 |
|
Windel Bouwman
|
a47e979f29
|
Merge branch 'master' into add_list_copy
|
2019-02-18 08:08:31 +01:00 |
|
Windel Bouwman
|
70d5cdbe3e
|
Merge pull request #492 from OddCoincidence/inplace-ops
Support magic methods for in-place operations
|
2019-02-18 08:05:59 +01:00 |
|
Windel Bouwman
|
71f32ee9b0
|
Merge pull request #491 from calixteman/fix_ccov_badge
Fix typo in codecov.io badge
|
2019-02-18 07:58:32 +01:00 |
|
Joey Hain
|
ddc7da4a9d
|
Add test for in-place ops
|
2019-02-17 18:17:26 -08:00 |
|
Joey Hain
|
afabde26d5
|
coverage: try deleting old gcda files
|
2019-02-17 17:18:47 -08:00 |
|
Joey Hain
|
7abaea556a
|
Micro-optimize list.__iadd__
|
2019-02-17 14:30:38 -08:00 |
|
Joey Hain
|
dcb29ab1f0
|
Add list.__iadd__
|
2019-02-17 10:54:25 -08:00 |
|
Joey Hain
|
b310d5e24b
|
Use i-methods for in-place operations
|
2019-02-17 10:47:58 -08:00 |
|
Joey Hain
|
fe3f45f655
|
Implement remaining binop reverse fallbacks
|
2019-02-17 09:26:31 -08:00 |
|
Calixte Denizet
|
b61730972e
|
Fix typo in codecov.io badge
|
2019-02-17 17:07:49 +01:00 |
|
Windel Bouwman
|
1af9cc0173
|
Merge pull request #489 from OddCoincidence/decorator-paths
Allow attributes to be used as decorators
|
2019-02-17 08:01:25 +01:00 |
|