Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 866569 - dev-util/gtk-doc-1.33.2 - Python module not byte-compiled
Summary: dev-util/gtk-doc-1.33.2 - Python module not byte-compiled
Status: UNCONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo Linux Gnome Desktop Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-08-25 18:26 UTC by Chris Mayo
Modified: 2022-08-25 18:48 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Chris Mayo 2022-08-25 18:26:48 UTC
/usr/share/gtk-doc/python/gtkdoc/__init__.py
Comment 1 Mike Gilbert gentoo-dev 2022-08-25 18:32:01 UTC
I think these python files are meant as example code for incorporation into other projects. If so, compiling them makes no sense.
Comment 2 Chris Mayo 2022-08-25 18:48:55 UTC
I think they are gtk-doc itself now e.g. from /usr/bin/gtkdoc-scan

```
try:
  import gtkdoc_uninstalled
except ModuleNotFoundError:
  sys.path.append('/usr/share/gtk-doc/python')

from gtkdoc import common, config, scan
```