File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
31
31
* Fix issue with ` ns-resolve ` throwing an error on macros (#720 )
32
32
* Fix issue with py module ` readerwritelock ` locks handling (#722 )
33
33
* Fix issue with basilisp.io/writer : append mode not working (#741 )
34
+ * Fix issue with attempting to inline functions which reference other Python modules that aren't available in the inline destination (#746 )
34
35
35
36
### Removed
36
37
* Removed the dependency ` astor ` for versions of Python 3.9+ (#736 )
Original file line number Diff line number Diff line change 1224
1224
[x]
1225
1225
(instance? basilisp.lang.interfaces/ICounted x))
1226
1226
1227
- (defn ^:inline decimal?
1227
+ (defn ^:no- inline decimal?
1228
1228
"Return ``true`` if ``x`` is a ``Decimal``\\."
1229
1229
[x]
1230
1230
(instance? decimal/Decimal x))
1391
1391
[x]
1392
1392
(instance? basilisp.lang.queue/PersistentQueue x))
1393
1393
1394
- (defn ^:inline ratio?
1394
+ (defn ^:no- inline ratio?
1395
1395
"Return ``true`` if ``x`` is a ``Fraction``\\."
1396
1396
[x]
1397
1397
(instance? fractions/Fraction x))
1441
1441
[x]
1442
1442
(operator/is- x true))
1443
1443
1444
- (defn ^:inline uuid?
1444
+ (defn ^:no- inline uuid?
1445
1445
"Return ``true`` if ``x`` is a UUID."
1446
1446
[x]
1447
1447
(instance? uuid/UUID x))
You can’t perform that action at this time.
0 commit comments