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

objetto

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

objetto - npm Package Compare versions

Comparing version
1.29.1
to
1.29.2
+1
-1
LICENSE
MIT License
Copyright (c) 2020 Bruno Nicko
Copyright (c) 2022 Bruno Nicko

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

Metadata-Version: 2.1
Name: objetto
Version: 1.29.1
Version: 1.29.2
Summary: Object-oriented framework for building smart applications and APIs

@@ -907,4 +907,5 @@ Home-page: https://github.com/brunonicko/objetto

Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=2.7
Description-Content-Type: text/x-rst
pyrsistent
six
slotted
slotted<2

@@ -5,0 +5,0 @@ [:python_version < "3.4"]

@@ -545,17 +545,2 @@ # -*- coding: utf-8 -*-

@overload
def update(self, __m, **kwargs):
# type: (Mapping[KT, VT], VT) -> None
pass
@overload
def update(self, __m, **kwargs):
# type: (Iterable[Tuple[KT, VT]], VT) -> None
pass
@overload
def update(self, **kwargs):
# type: (VT) -> None
pass
@final

@@ -562,0 +547,0 @@ def update(self, *args, **kwargs):

@@ -517,3 +517,2 @@ # -*- coding: utf-8 -*-

def __iadd__(self, iterable):
# type: (Iterable[T]) -> MutableSequence[T]
"""

@@ -520,0 +519,0 @@ In place addition.

@@ -572,3 +572,3 @@ # -*- coding: utf-8 -*-

if base is cls:
base_dict = dict(base.__dict__)
base_dict = dict(base.__dict__) # type: Mapping[str, Any]
else:

@@ -575,0 +575,0 @@ base_dict = base.__dict__

Metadata-Version: 2.1
Name: objetto
Version: 1.29.1
Version: 1.29.2
Summary: Object-oriented framework for building smart applications and APIs

@@ -907,4 +907,5 @@ Home-page: https://github.com/brunonicko/objetto

Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=2.7
Description-Content-Type: text/x-rst

@@ -8,3 +8,3 @@ import setuptools

name="objetto",
version="1.29.1",
version="1.29.2",
author="Bruno Nicko",

@@ -22,3 +22,3 @@ author_email="brunonicko@gmail.com",

"six",
"slotted",
"slotted<2",
"typing; python_version < '3.5'",

@@ -36,2 +36,3 @@ ],

"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",

@@ -38,0 +39,0 @@ ],

[tox]
envlist = py{27,35,36,37,38,39}
envlist = py{27,35,36,37,38,39,310}
skip_missing_interpreters = true

@@ -4,0 +4,0 @@