Pascal Chambon

Results 66 comments of Pascal Chambon

Yes there are multiple similar calls in python-for-android, eg. https://github.com/kivy/python-for-android/blob/8740267d82fc3797a56ee355c9e69f4f30b35a84/pythonforandroid/recipes/android/src/android/permissions.py#L577 I tested it in my own app, the method call works whereas there is no instance explicitly involved.

Same issue here, recurrently encountered on numerous projects, with different package management tools. I'm desperately trying to find a dependency management system which lets me workaround the numerous quirks of...

The best solution imho would be to copy what Yarn does (https://classic.yarnpkg.com/lang/en/docs/selective-version-resolutions/) Allowing to *really* pin a specific version of a specific package MYPACKAGE, thus completly overriding all other constraints...

Overriding a specific dependency's subdependencies would indeed be more fine-grained and explicit. But franky, as long as "theoretical incompatibilities" are reported each time we use pip-tools (like pip somehow does...

Note: although it's just a temporary workaround, adding "--yes" to the "pip uninstall" command does the job to avoid stdin prompt

If I understand correctly, kivy-ios "hacks" the production of .so/.pyd files (they are empty at the end), and generates .a files that can be compiled statically in Xcode, instead. I...

Same error here The UIKit which defines this struct "uiedgeinsets" returned by safeAreaInsets (https://developer.apple.com/documentation/uikit/uiedgeinsets) is not in pyobjus "INCLUDE", so I assume it's already loaded as part of Foundation, and...

I agree with this idea, non-persistence of objects (eg. imported from/to json and yaml) is a scary thing, I developed lot of utilities to constantly check my DB (especially since...

(See https://github.com/zopefoundation/persistent/issues/112 for a nasty case where persistence can be lost unknowingly)

Here are some references for low-dependency Shamir that I found, just in case it helps Tested by me on MSP430 --------------------------- https://github.com/fletcher/c-sss ((MIT LICENSE, works) https://github.com/rbaron/secret (MIT LICENSE, works but...