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

antipathy

Package Overview
Dependencies
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

antipathy - pypi Package Compare versions

Comparing version
0.85.3
to
0.85.4
+2
-1
antipathy.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: antipathy
Version: 0.85.3
Version: 0.85.4
Summary: oo view of file paths and names, subclassed from bytes/str/unicode

@@ -25,2 +25,3 @@ Home-page: https://github.com/ethanfurman/antipathy

Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12

@@ -27,0 +28,0 @@ Antipathy -- for those tired of ``os.path``

@@ -1,2 +0,2 @@

version = 0, 85, 3
version = 0, 85, 4

@@ -3,0 +3,0 @@ from .path import *

@@ -0,1 +1,20 @@

0.85.4
======
strip leading slash after path subtraction, unless subtracting an
empty string
0.85.3
======
do not start relative paths at root
0.85.2
======
update copytree() for later python versions
0.85.0

@@ -2,0 +21,0 @@ ======

@@ -699,3 +699,6 @@ """

raise ValueError("cannot subtract %r from %r" % (other, self))
return Path(s[len(o):])
res = Path(s[len(o):])
if o:
res = res.lstrip(self._SLASH)
return res

@@ -702,0 +705,0 @@ def access(self, file_name, mode=None):

Metadata-Version: 2.1
Name: antipathy
Version: 0.85.3
Version: 0.85.4
Summary: oo view of file paths and names, subclassed from bytes/str/unicode

@@ -25,2 +25,3 @@ Home-page: https://github.com/ethanfurman/antipathy

Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12

@@ -27,0 +28,0 @@ Antipathy -- for those tired of ``os.path``

@@ -53,3 +53,3 @@ import setuptools

name='antipathy',
version='0.85.3',
version='0.85.4',
license='BSD License',

@@ -79,2 +79,3 @@ description='oo view of file paths and names, subclassed from bytes/str/unicode',

'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],

@@ -81,0 +82,0 @@ )

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