Commit Graph

2855 Commits

Author SHA1 Message Date
Noah
e89d00f167 Correctly handle a SystemExit unwound to the top level of execution 2019-10-04 22:05:01 -05:00
coolreader18
8746f29d3b Fix sre_compile._bytes_to_code 2019-10-02 22:09:31 -05:00
coolreader18
7e7a20a653 Fix PyNamespace constructor 2019-10-02 20:32:41 -05:00
coolreader18
0c84de8a54 Make creating a PyRef<T> fallible
If the payload isn't what it should be (usually because there's no
constructor for the type), it'll throw a RuntimeError
2019-10-02 18:44:24 -05:00
coolreader18
9456d1b680 Add constructor to mappingproxy 2019-10-02 18:42:46 -05:00
Noah
8612ccc151 Rename re with the Rust regex crate to regex_crate 2019-10-02 20:11:48 +00:00
Noah
d047dc0bd1 Merge pull request #1444 from lntuition/fix-int-arg
Fix argument keyword error in int/float/bool.__new__
2019-10-02 12:14:19 -05:00
Windel Bouwman
339e44fb5c Merge pull request #1420 from lntuition/fix-1408
Fix int type casting errors
2019-10-02 17:27:54 +02:00
Sang-Heon Jeon
49577e0713 Merge branch 'master' into fix-int-arg 2019-10-02 15:19:01 +09:00
lntuition
a07daf322f Fix argument keyword error in bool.__new__
Add BoolArgs struct to fix argument keyword error in bool.__new
2019-10-02 15:13:45 +09:00
lntuition
a209169d9c Fix argument keyword error in float.__new__
Add FloatArgs struct to fix argument keyword error in float.__new
2019-10-02 15:13:45 +09:00
Noah
d9cdb32e49 Merge pull request #1441 from dralley/fix-strings
Handle unicode indexing by character, not by grapheme
2019-10-01 19:01:41 -05:00
Daniel Alley
a6bf19e549 Change sys.version* attributes to return the Python version
Return the version of Python that we attempt to be compatible with, not
the version numbers of the RustPython interpreter itself.

closes #1396
2019-10-01 16:12:45 -04:00
Daniel Alley
02ea0b629f Handle unicode indexing by character, not by grapheme
Python isn't grapheme aware, so for compatibility sake, we shouldn't be
either.

closes #1417
2019-10-01 12:37:16 -04:00
Noah
36a4e107d7 Merge pull request #1414 from RustPython/coolreader18/enum-module
Fix weirdness with type.__new__()/type()/metaclass.__new__() in order to support enum
2019-10-01 07:26:31 -05:00
HyeockJinKim
cc8f221c67 Implement __eq__, __ne__ of slice
Compute __eq__ and __ne__ by comparing start,
stop and step of slice

Issue #1431
2019-10-01 14:39:21 +09:00
Aviv Palivoda
da17726a90 Merge pull request #1380 from mpajkowski/os_scandir_contextmanager
os.scandir refinement
2019-09-30 23:53:33 +03:00
lntuition
17ef308785 Fix argument keyword error in int.__new__
Change property name and attributes of IntOptions

Fixed: #1440
2019-09-30 21:45:32 +09:00
coolreader18
78069284a8 Only have type_new on object 2019-09-29 23:22:59 -05:00
Noah
d22cac2dd8 Rename new slots to tp_new 2019-09-29 23:14:37 -05:00
Noah
2bb04f4836 Don't try to put __new__ on every type 2019-09-29 23:14:37 -05:00
coolreader18
b581975ef6 Fix clippy lints 2019-09-29 23:14:36 -05:00
coolreader18
c46b5b50bd Fix weirdness with type.__new__()/type()/metaclass.__new__() 2019-09-29 23:14:31 -05:00
coolreader18
4313abcdad Fix type.__new__ for enum 2019-09-29 23:13:08 -05:00
Johan
dd6ca78c19 extend_class for PyNone (#1436)
* extend_class for PyNone

* Apply clippy
2019-09-29 19:07:41 +02:00
Noah
e95c23f351 Merge pull request #1434 from ChJR/feature/sys._git
Add sys._git (#1358)
2019-09-29 09:46:37 -05:00
Jeong YunWon
ca24ca20e8 Merge pull request #1435 from HyeockJinKim/issue1431
Add __repr__ of slice
2019-09-29 17:38:02 +09:00
HyeockJinKim
442e0d0255 Add __repr__ of slice
Issue: #1431
2019-09-29 16:54:04 +09:00
Windel Bouwman
e2444b1ca3 Merge pull request #1429 from lntuition/fix-int-with-byte
Fix error in int.from_bytes and int.to_bytes
2019-09-29 09:36:39 +02:00
HyeockJinKim
5df5ba67ed extend_class for PySlice 2019-09-29 15:32:58 +09:00
lntuition
6bbc69b38a Fix int type casting which number has radix and front underscore
When some number has radix and front underscore both, then ignore front underscore

fixed: #1415
2019-09-29 12:57:55 +09:00
lntuition
8336bc9524 Rename struct and arguments of int.from_bytes and int.to_bytes 2019-09-29 12:27:39 +09:00
lntuition
0700a9e81d Fix argument keyword error in int.to_bytes
Add IntToByteOptions struct to fix int argument keyword error in int.to_bytes
Also fix some ValueError to OverflowError like cPython
2019-09-28 18:33:09 +09:00
lntuition
33131ab79b Fix argument keyword error in int.from_bytes
Add IntFromByteOptions struct to fix int argument keyword error in int.from_bytes

Fixed: #1427
2019-09-28 18:01:22 +09:00
coolreader18
d0f7b5f347 Invert the inverted boolean 2019-09-28 00:41:41 -05:00
Noah
499bf146bd Only overwrite the locals in __build_class__ if it's a class 2019-09-28 00:41:41 -05:00
j30ng
b056044b5a Fix CI Build in Rust 1.38.0 2019-09-28 03:24:47 +09:00
j30ng
3768233c8e Enable Zero-padding with Format Strings 2019-09-28 00:36:48 +09:00
Noah
c181a7cae2 Merge pull request #1424 from dralley/fix-float
Allow float() to be called without an argument
2019-09-26 23:10:38 -05:00
Daniel Alley
32b4a9255f Allow float() to be called without an argument
closes #1421
2019-09-26 22:54:47 -04:00
Daniel Alley
a964f216c4 Fix clippy warnings 2019-09-26 17:45:36 -04:00
Noah
d6d305f4a4 Merge branch 'master' of https://github.com/RustPython/RustPython 2019-09-26 11:06:23 -05:00
Sang-Heon Jeon
d82fee7afa Fix wrong int type casting with radix and larger base value
Fix base value check logic when string have regex

Fixed: #1408
2019-09-26 21:45:17 +09:00
Jeong YunWon
f209929dbc Merge pull request #1413 from ChJR/hotfix/exit
Fix exit()
2019-09-26 20:16:08 +09:00
HyeonGyu Lee (Vazrupe)
00823dd923 Fix panic when using negative int for bytes()
Fixes #1401
2019-09-26 13:24:00 +09:00
Marcin Pajkowski
c893a5e307 Implement context manager protocol for os.scandir 2019-09-25 21:44:28 +02:00
Noah
d88167bb73 Bump crate versions 2019-09-25 11:57:38 -05:00
Windel Bouwman
51c3f71eed Merge pull request #1406 from lntuition/fix-1405
Fix int type casting error with negative base value
2019-09-25 17:15:48 +02:00
Hyunji Kim
239115f686 itertools.compress 2019-09-25 22:55:05 +09:00
Sang-Heon Jeon
545e9d39df Fix int type casting error with negative base value
Change base type from u32 to PyIntRef

Fixed: #1405
2019-09-25 01:01:21 +09:00