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

fixedint

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fixedint - pypi Package Compare versions

Comparing version
0.1.0
to
0.1.1
+2
-2
fixedint.egg-info/PKG-INFO
Metadata-Version: 1.1
Name: fixedint
Version: 0.1.0
Version: 0.1.1
Summary: simple fixed-width integers

@@ -64,3 +64,3 @@ Home-page: https://github.com/nneonneo/fixedint

* ``divmod`` returns a tuple of plain ``int``s
* ``divmod`` returns a tuple of plain ``int`` s
* true division returns a float

@@ -67,0 +67,0 @@ * ``**``, ``<<`` and ``>>`` will return a ``FixedInt`` if the left operand was a

Metadata-Version: 1.1
Name: fixedint
Version: 0.1.0
Version: 0.1.1
Summary: simple fixed-width integers

@@ -64,3 +64,3 @@ Home-page: https://github.com/nneonneo/fixedint

* ``divmod`` returns a tuple of plain ``int``s
* ``divmod`` returns a tuple of plain ``int`` s
* true division returns a float

@@ -67,0 +67,0 @@ * ``**``, ``<<`` and ``>>`` will return a ``FixedInt`` if the left operand was a

@@ -56,3 +56,3 @@ =====================================

* ``divmod`` returns a tuple of plain ``int``s
* ``divmod`` returns a tuple of plain ``int`` s
* true division returns a float

@@ -59,0 +59,0 @@ * ``**``, ``<<`` and ``>>`` will return a ``FixedInt`` if the left operand was a

@@ -6,5 +6,8 @@ try:

with open('README.rst') as file:
long_description = file.read()
setup(
name = 'fixedint',
version = '0.1.0',
version = '0.1.1',
author = 'Robert Xiao',

@@ -30,3 +33,3 @@ author_email = 'robert.bo.xiao@gmail.com',

packages = ['fixedint'],
long_description=open('README.rst').read(),
long_description=long_description,
)