浏览代码

[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;