New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

twistar

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

twistar - pypi Package Compare versions

Comparing version
1.2
to
1.3
+1
-1
PKG-INFO
Metadata-Version: 1.1
Name: twistar
Version: 1.2
Version: 1.3
Summary: An implementation of the Active Record pattern for Twisted

@@ -5,0 +5,0 @@ Home-page: http://findingscience.com/twistar

@@ -1,3 +0,1 @@

[easy_install]
[egg_info]

@@ -4,0 +2,0 @@ tag_build =

Metadata-Version: 1.1
Name: twistar
Version: 1.2
Version: 1.3
Summary: An implementation of the Active Record pattern for Twisted

@@ -5,0 +5,0 @@ Home-page: http://findingscience.com/twistar

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

setup.cfg
setup.py

@@ -3,0 +2,0 @@ BermiInflector/Inflector.py

@@ -9,3 +9,3 @@ """

"""
version_info = (1, 2)
version_info = (1, 3)
version = '.'.join(map(str, version_info))

@@ -248,3 +248,3 @@ """

def update(self, tablename, args, where=None, txn=None):
def update(self, tablename, args, where=None, txn=None, limit=None):
"""

@@ -264,2 +264,4 @@ Update a row into the given table.

@param limit: If limit is given it will limit the number of rows that are updated.
@return: A C{Deferred}

@@ -273,2 +275,4 @@ """

args += whereargs
if limit is not None:
q += " LIMIT " + str(limit)

@@ -275,0 +279,0 @@ if txn is not None: