Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoSign in
Socket

order-book

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

order-book - pypi Package Compare versions

Comparing version
0.3.1
to
0.3.2
+3
-0
CHANGES.md
## Changelog
### 0.3.2 (2021-09-04)
* Bugfix: depth was incorrectly ignored when converting sorteddict to python dict
### 0.3.1 (2021-09-01)

@@ -4,0 +7,0 @@ * Bugfix: truncate and max_depth not being passed from orderbook to sorteddict object correctly

+4
-1
Metadata-Version: 2.1
Name: order-book
Version: 0.3.1
Version: 0.3.2
Summary: A fast orderbook implementation, in C, for Python

@@ -130,2 +130,5 @@ Home-page: https://github.com/bmoscon/orderbook

### 0.3.2 (2021-09-04)
* Bugfix: depth was incorrectly ignored when converting sorteddict to python dict
### 0.3.1 (2021-09-01)

@@ -132,0 +135,0 @@ * Bugfix: truncate and max_depth not being passed from orderbook to sorteddict object correctly

@@ -264,2 +264,6 @@ /*

int len = PySequence_Length(self->keys);
if ((self->depth > 0) && (self->depth < len)) {
len = self->depth;
}
for(int i = 0; i < len; ++i) {

@@ -266,0 +270,0 @@ PyObject *key = PyTuple_GET_ITEM(self->keys, i);

Metadata-Version: 2.1
Name: order_book
Version: 0.3.1
Version: 0.3.2
Summary: A fast orderbook implementation, in C, for Python

@@ -130,2 +130,5 @@ Home-page: https://github.com/bmoscon/orderbook

### 0.3.2 (2021-09-04)
* Bugfix: depth was incorrectly ignored when converting sorteddict to python dict
### 0.3.1 (2021-09-01)

@@ -132,0 +135,0 @@ * Bugfix: truncate and max_depth not being passed from orderbook to sorteddict object correctly

@@ -36,3 +36,3 @@ '''

name='order_book',
version='0.3.1',
version='0.3.2',
author="Bryant Moscon",

@@ -39,0 +39,0 @@ author_email="bmoscon@gmail.com",