Преглед на файлове

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

Aleksandr Kuzmenko преди 4 години
родител
ревизия
225d28afed
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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;