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

robotkernel

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

robotkernel - pypi Package Compare versions

Comparing version
1.5.0
to
1.5.1
+6
-0
CHANGELOG.rst
Changelog
=========
1.5.1 (2021-09-28)
------------------
- Fix set_parent signature
[martinRenou]
1.5.0 (2021-04-22)

@@ -5,0 +11,0 @@ ------------------

+7
-1
Metadata-Version: 1.1
Name: robotkernel
Version: 1.5.0
Version: 1.5.1
Summary: A Jupyter kernel for interactive acceptance-test-driven development with the Robot Framework

@@ -176,2 +176,8 @@ Home-page: https://github.com/robots-from-jupyter/robotkernel

1.5.1 (2021-09-28)
------------------
- Fix set_parent signature
[martinRenou]
1.5.0 (2021-04-22)

@@ -178,0 +184,0 @@ ------------------

+1
-1
[metadata]
name = robotkernel
version = 1.5.0
version = 1.5.1
description = A Jupyter kernel for interactive acceptance-test-driven development with the Robot Framework

@@ -5,0 +5,0 @@ long_description = file: README.rst, CHANGELOG.rst

Metadata-Version: 1.1
Name: robotkernel
Version: 1.5.0
Version: 1.5.1
Summary: A Jupyter kernel for interactive acceptance-test-driven development with the Robot Framework

@@ -176,2 +176,8 @@ Home-page: https://github.com/robots-from-jupyter/robotkernel

1.5.1 (2021-09-28)
------------------
- Fix set_parent signature
[martinRenou]
1.5.0 (2021-04-22)

@@ -178,0 +184,0 @@ ------------------

@@ -60,6 +60,6 @@ # -*- coding: utf-8 -*-

def set_parent(self, ident, parent):
def set_parent(self, ident, parent, *args, **kwargs):
"""Overridden from parent to tell the display hook and output streams about the parent message.
"""
super(DisplayKernel, self).set_parent(ident, parent)
super(DisplayKernel, self).set_parent(ident, parent, *args, **kwargs)
self.shell.set_parent(parent)

@@ -66,0 +66,0 @@