Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add PyDict_Next implementation #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

BlackCatDevel0per
Copy link

@BlackCatDevel0per BlackCatDevel0per commented Sep 22, 2023

Hello, could you please add PyDict_Next to the library? I want to use this in OwO decorators and it's a very cool lib)

In short it works like this:

import pycapi

a = {'a': 1, 'b': 2}
b = {'a': 8, 'b': 5, 'c': 3}

item = pycapi.PyDict_Next(b, 2)  # Return tuple
print(item)
item = pycapi.PyDict_Next(a, 2)  # Return None if no such pos
print(item)

In short works like this:

import pycapi

a = {'a': 1, 'b': 2}
b = {'a': 8, 'b': 5, 'c': 3}

item = pycapi.PyDict_Next(b, 2)  # Return tuple
print(item)
item = pycapi.PyDict_Next(a, 2)  # Return None if no such pos
print(item)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant