Browse Source

[python] changed sys.thread.Deque.NativeDeque to a private type

Aleksandr Kuzmenko 4 years ago
parent
commit
225d28afed
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/python/_std/sys/thread/Deque.hx

+ 1 - 1
std/python/_std/sys/thread/Deque.hx

@@ -63,7 +63,7 @@ class Deque<T> {
 
 @:pythonImport("collections", "deque")
 @:native("deque")
-extern class NativeDeque<T> {
+private extern class NativeDeque<T> {
 	function new();
 	function append(x:T):Void;
 	function appendleft(x:T):Void;