alexpantyukhin
|
15e6187583
|
add overflow errors for int shifts.
|
2019-02-27 11:11:38 +04:00 |
|
Adam Kelly
|
73a65a1c77
|
dis.rs - small refactor dis_dis.
|
2019-02-26 09:41:39 +00:00 |
|
Adam Kelly
|
79f43ad762
|
Add support for pulling __code__ out of a function (and a test that hits lots of instructions).
|
2019-02-26 09:41:39 +00:00 |
|
Adam Kelly
|
2c0016a171
|
Minimal definition of dis.dis.
|
2019-02-26 09:41:39 +00:00 |
|
Windel Bouwman
|
9e03b6908c
|
Merge pull request #538 from RustPython/joey/f-string-conversion-flags
Support f-string conversion flags
|
2019-02-25 07:21:09 +01:00 |
|
Joey Hain
|
f050acba73
|
f-strings: allow ':' and '!' to be used in the expression
|
2019-02-24 21:13:08 -08:00 |
|
Joey Hain
|
ddc154a1dd
|
f-strings: support conversion flags
|
2019-02-24 14:37:59 -08:00 |
|
Aviv Palivoda
|
c87cf90043
|
Add socket test
|
2019-02-24 22:20:20 +02:00 |
|
Adam Gutglick
|
f4e6e5dec8
|
Addred real property and is_integer function to float.
|
2019-02-24 04:02:24 +02:00 |
|
Aviv Palivoda
|
b530733c1a
|
Add assertRaises context manager to testutils
|
2019-02-23 13:11:26 +02:00 |
|
Windel Bouwman
|
3f8f0e2ff4
|
Merge pull request #524 from palaviv/Improve-set-5
Add set.{__iter__,__ior__,__iand__,__isub__,__ixor__}
|
2019-02-23 08:50:26 +01:00 |
|
Joey
|
2df741452b
|
Merge pull request #523 from AdamGS/complex_and_ints_addition
Complex and ints addition
|
2019-02-22 07:34:47 -08:00 |
|
Aviv Palivoda
|
fc10560308
|
Add set.{__ior__,__iand__,__isub__,__ixor__}
|
2019-02-22 16:50:40 +02:00 |
|
Aviv Palivoda
|
7cf25440fa
|
Add set.__iter__
|
2019-02-22 16:25:55 +02:00 |
|
Adam Gutglick
|
f333c75fd6
|
Added the ability to do addition between complex numbers and ints.
|
2019-02-22 08:42:44 -05:00 |
|
Adam Gutglick
|
38b4c10833
|
Added the ability to do addition between complex numbers and ints.
|
2019-02-21 19:28:46 -05:00 |
|
Joey
|
8f37b9f443
|
Merge pull request #519 from AdamGS/testutil_back_comp
Backwards compitability for python 3.5 to run tests.
|
2019-02-21 14:31:03 -08:00 |
|
Adam Gutglick
|
999ca431d5
|
Fixed typo.
|
2019-02-21 16:03:07 -05:00 |
|
Adam Gutglick
|
365680c272
|
Changed to syntax RustPython supports.
|
2019-02-21 15:55:18 -05:00 |
|
Windel Bouwman
|
7dd1eec936
|
Merge pull request #517 from palaviv/set-more-funcs
Add set.{pop,update,intersection_update,difference_update,symmetric_difference_update}
|
2019-02-21 20:53:41 +01:00 |
|
Windel Bouwman
|
565023f55b
|
Merge pull request #518 from AdamGS/add_int_attributes
Added real/imag attributes to int type.
|
2019-02-21 20:52:06 +01:00 |
|
Adam Gutglick
|
81a9e6984d
|
Changed syntax in testutils.py that is introduced in 3.6 to a backwards compatible version.
|
2019-02-21 14:47:36 -05:00 |
|
Adam Gutglick
|
852dd1086a
|
Added tests to imag/real attributes.
|
2019-02-21 14:11:23 -05:00 |
|
Aviv Palivoda
|
21b6616e8e
|
Add set.symmetric_difference_update
|
2019-02-21 19:33:20 +02:00 |
|
Aviv Palivoda
|
1621d78326
|
Add set.difference_update
|
2019-02-21 19:02:05 +02:00 |
|
Aviv Palivoda
|
a4b814e9a7
|
Add set.intersection_update
|
2019-02-21 18:55:22 +02:00 |
|
Aviv Palivoda
|
5f3664e87d
|
Add set.update
|
2019-02-21 18:34:47 +02:00 |
|
Aviv Palivoda
|
a89b0593da
|
Add set.pop
|
2019-02-21 18:34:47 +02:00 |
|
Adam Kelly
|
5ebfd55b20
|
Add extremely minimal dis module.
|
2019-02-21 14:02:59 +00:00 |
|
janczer
|
b833c08951
|
Add bytearray.{lower, upper}
|
2019-02-20 19:35: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 |
|
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 |
|
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 |
|
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
|
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 |
|
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
|
dcb29ab1f0
|
Add list.__iadd__
|
2019-02-17 10:54:25 -08: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 |
|
Windel Bouwman
|
cb2a807994
|
Merge pull request #486 from OddCoincidence/assert-raises
Reuse and improve ergonomics of assert_raises utility
|
2019-02-17 07:59:34 +01:00 |
|
Windel Bouwman
|
9d218bf806
|
Merge pull request #485 from calixteman/ccov
Code coverage for RustPython
|
2019-02-17 07:56:58 +01:00 |
|
Joey Hain
|
114d9df1d1
|
Allow attributes to be used as decorators
|
2019-02-16 19:43:25 -08:00 |
|