File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1+ #[ cfg( feature = "malachite-bigint" ) ]
2+ pub use malachite_bigint:: { BigInt , Sign } ;
3+ #[ cfg( feature = "num-bigint" ) ]
4+ pub use num_bigint:: { BigInt , Sign } ;
Original file line number Diff line number Diff line change 11//! Implementation of Printf-Style string formatting
22//! as per the [Python Docs](https://docs.python.org/3/library/stdtypes.html#printf-style-string-formatting).
3+ use crate :: bigint:: { BigInt , Sign } ;
34use bitflags:: bitflags;
4- #[ cfg( feature = "malachite-bigint" ) ]
5- use malachite_bigint:: { BigInt , Sign } ;
6- #[ cfg( feature = "num-bigint" ) ]
7- use num_bigint:: { BigInt , Sign } ;
85use num_traits:: Signed ;
96use rustpython_literal:: { float, format:: Case } ;
107use std:: {
Original file line number Diff line number Diff line change 1+ use crate :: bigint:: { BigInt , Sign } ;
12use itertools:: { Itertools , PeekingNext } ;
2- #[ cfg( feature = "malachite-bigint" ) ]
3- use malachite_bigint:: { BigInt , Sign } ;
4- #[ cfg( feature = "num-bigint" ) ]
5- use num_bigint:: { BigInt , Sign } ;
63use num_traits:: FromPrimitive ;
74use num_traits:: { cast:: ToPrimitive , Signed } ;
85use rustpython_literal:: float;
Original file line number Diff line number Diff line change 1+ mod bigint;
12pub mod cformat;
23mod format;
34
You can’t perform that action at this time.
0 commit comments