Eduardo Sánchez Muñoz

Results 33 issues of Eduardo Sánchez Muñoz

`PyCall.pyimport("matplotlib")` produces: ``` ERROR: PyError (PyImport_ImportModule The Python package matplotlib could not be imported by pyimport. Usually this means that you did not install matplotlib in the Python version being...

Example: ```rust use logos::Logos; #[derive(Logos, Debug, PartialEq)] enum Token { #[error] Error, #[regex(r"[\u{0}-\u{10FFFF}]")] AnyChar, } fn main() { let mut lex = Token::lexer("Ω"); assert_eq!(lex.next(), Some(Token::AnyChar)); assert_eq!(lex.span(), 0..2); // length of...

Example: ```rust use logos::Logos; #[derive(Logos, Debug, PartialEq, Eq)] enum LexedToken { #[error] Error, #[regex("(?i)n")] X1, #[regex("(?i)n(at)+b")] X2, } #[test] fn test() { let mut lex = LexedToken::lexer("nat"); assert_eq!(lex.next(), Some(LexedToken::X1)); assert_eq!(lex.slice(),...

bug

### Please confirm your submission meets all the criteria - [x] I have read the [App Requirements][reqs] and [App Maintenance][maint] pages. - [x] My pull request follows the instructions at...

This is a duplicate of https://github.com/haiwen/seadroid/issues/759, but that issue was closed without actually being fixed. Pull request https://github.com/haiwen/seadroid/pull/765 fixes this issue. Steps to reproduce: * Start the application * The...

This proposal would involves breaking changes and it is also a bit of personal opinion, so feel free to close it. The names `Complex32` or `Complex64` may be confusing for...

I am trying to test the driver on Manjaro with kernel 5.10.30. I have successfully built the module and loaded the `drm`, `drm_kms_helper` and `fl2000` modules. I have also added...

With this widget, system log (journalctl) flooded with the same message: ``plasmashell[962]: qml: temp unit: 0`` Probably it has something to do with this line: https://github.com/kotelnik/plasma-applet-thermal-monitor/blob/0002326c677391a93d30320bfda1de608aca1ee7/package/contents/code/temperature-utils.js#L16

When trying to build spuce, I get the following error: ``` CMake Error at qt_fir/CMakeLists.txt:31 (QT5_USE_Modules): Unknown CMake command "QT5_USE_Modules". ``` It seems that `QT5_USE_Modules` has been removed in Qt...

`mke2fs` has a `-d` option that allows to populate the newly created filesystem without needing to temporarily mount it. That allows to use `parted` and `mkfs.ext3` on regular files without...