mirror of
https://github.com/RustPython/Parser.git
synced 2025-09-07 02:50:54 +00:00
Replace num-bigint with malachite-bigint (#18)
Co-authored-by: Jeong YunWon <jeong@youknowone.org>
This commit is contained in:
parent
5e9e8a7589
commit
a2e3209c42
16 changed files with 51 additions and 37 deletions
|
@ -1,7 +1,7 @@
|
|||
//! Implementation of Printf-Style string formatting
|
||||
//! as per the [Python Docs](https://docs.python.org/3/library/stdtypes.html#printf-style-string-formatting).
|
||||
use bitflags::bitflags;
|
||||
use num_bigint::{BigInt, Sign};
|
||||
use malachite_bigint::{BigInt, Sign};
|
||||
use num_traits::Signed;
|
||||
use rustpython_literal::{float, format::Case};
|
||||
use std::{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue