Code Monkey home page Code Monkey logo

Comments (6)

pawamoy avatar pawamoy commented on August 25, 2024

Hi, thanks for the report, and the test!

What I remember about nested namespace packages, from when I added/fixed support for namespace packages, is that they are a pain to handle correctly 😅

But I understand the use-case of being able to add modules to sub(namespace)-packages (by the way, could you show me your use case? it's always easier to think about a problem with some examples 🙂), so Griffe should definitely support nested namespace packages.

from griffe.

ffaraone avatar ffaraone commented on August 25, 2024

This happens with this library https://github.com/cloudblue/connect-markdown-renderer.

With this change:

diff --git a/src/griffe/mixins.py b/src/griffe/mixins.py
index 6fc0c25..227c716 100644
--- a/src/griffe/mixins.py
+++ b/src/griffe/mixins.py
@@ -85,7 +85,10 @@ class SetMembersMixin(DelMembersMixin):
             else:
                 value.parent = self
         else:
-            self.members[parts[0]][parts[1:]] = value  # type: ignore[attr-defined]
+            try:
+                self.members[parts[0]][parts[1:]] = value  # type: ignore[attr-defined]
+            except KeyError:
+                self.members[parts[0]] = value

it works but I'm not sure this is the right fix.

from griffe.

pawamoy avatar pawamoy commented on August 25, 2024

I've pushed a fix on master, could you try it and tell me if it works?

from griffe.

ffaraone avatar ffaraone commented on August 25, 2024

Many many thanks @pawamoy ! It works like a charm. Do you plan to release a this patch today ?

from griffe.

pawamoy avatar pawamoy commented on August 25, 2024

Great!

Yup, will release now 🙂

from griffe.

pawamoy avatar pawamoy commented on August 25, 2024

Done, v0.24.1 published.

from griffe.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.