You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

basilisp

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

basilisp - pypi Package Compare versions

Comparing version
0.5.0.dev2
to
0.5.0
+1
-1
PKG-INFO
Metadata-Version: 2.4
Name: basilisp
Version: 0.5.0.dev2
Version: 0.5.0
Summary: A Clojure-like lisp written for Python

@@ -5,0 +5,0 @@ License-Expression: EPL-1.0

[project]
name = "basilisp"
version = "0.5.0.dev2"
version = "0.5.0"
description = "A Clojure-like lisp written for Python"

@@ -111,3 +111,2 @@ authors = [

]
patch = ["subprocess"]

@@ -114,0 +113,0 @@ [tool.coverage.paths]

@@ -24,3 +24,3 @@ from builtins import map as pymap

from basilisp.lang.obj import (
PRINT_SEPARATOR,
MAP_PRINT_SEPARATOR,
SURPASSED_PRINT_LENGTH,

@@ -198,3 +198,3 @@ SURPASSED_PRINT_LEVEL,

seq_lrepr = PRINT_SEPARATOR.join(items + trailer)
seq_lrepr = MAP_PRINT_SEPARATOR.join(items + trailer)

@@ -201,0 +201,0 @@ ns_prefix = ("#:" + ns_name_shared) if ns_name_shared else ""

@@ -29,3 +29,4 @@ import datetime

PRINT_READABLY = True
PRINT_SEPARATOR = " "
SEQ_PRINT_SEPARATOR = " "
MAP_PRINT_SEPARATOR = ", "

@@ -119,3 +120,3 @@

items = list(map(lambda o: lrepr(o, **kw_items), items))
seq_lrepr = PRINT_SEPARATOR.join(items + trailer)
seq_lrepr = SEQ_PRINT_SEPARATOR.join(items + trailer)

@@ -122,0 +123,0 @@ print_meta = kwargs["print_meta"]

@@ -67,2 +67,4 @@ import uuid

def apply_to(self, args: list, rest: ISeq | None): ...
def with_meta(self, meta: IPersistentMap | None) -> "BasilispFunction": ...

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display