commit:     a92d62e35c07898d882ffeab0c687cf1ade264e3
Author:     Brian Harring <ferringb <AT> gmail <DOT> com>
AuthorDate: Fri Nov 21 23:46:08 2025 +0000
Commit:     Brian Harring <ferringb <AT> gmail <DOT> com>
CommitDate: Fri Nov 21 23:46:43 2025 +0000
URL:        
https://gitweb.gentoo.org/proj/pkgcore/snakeoil.git/commit/?id=a92d62e3

chore: rename _namespaces to python_namespaces to be clearer

Signed-off-by: Brian Harring <ferringb <AT> gmail.com>

 src/snakeoil/{_namespaces.py => python_namespaces.py} | 0
 src/snakeoil/test/mixins.py                           | 2 +-
 src/snakeoil/test/slot_shadowing.py                   | 2 +-
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/snakeoil/_namespaces.py b/src/snakeoil/python_namespaces.py
similarity index 100%
rename from src/snakeoil/_namespaces.py
rename to src/snakeoil/python_namespaces.py

diff --git a/src/snakeoil/test/mixins.py b/src/snakeoil/test/mixins.py
index 0918217..c4db185 100644
--- a/src/snakeoil/test/mixins.py
+++ b/src/snakeoil/test/mixins.py
@@ -1,6 +1,6 @@
 from snakeoil.deprecation import deprecated
 
-from .._namespaces import PythonNamespaceWalker as _original
+from ..python_namespaces import PythonNamespaceWalker as _original
 
 PythonNamespaceWalker = deprecated(
     "snakeoil.test.mixins.PythonNamespaceWalker has moved to 
snakeoil._namespaces.  Preferably remove your dependency on it"

diff --git a/src/snakeoil/test/slot_shadowing.py 
b/src/snakeoil/test/slot_shadowing.py
index 256643e..2378370 100644
--- a/src/snakeoil/test/slot_shadowing.py
+++ b/src/snakeoil/test/slot_shadowing.py
@@ -4,7 +4,7 @@ import warnings
 
 import pytest
 
-from snakeoil._namespaces import PythonNamespaceWalker
+from snakeoil.python_namespaces import PythonNamespaceWalker
 
 
 class TargetedNamespaceWalker(PythonNamespaceWalker):

Reply via email to