This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import subprocess | |
from threading import Event, Thread, Lock, get_ident | |
from concurrent.futures import ThreadPoolExecutor | |
from queue import Empty | |
lock = Lock() | |
my_list = [] | |
def add_data(data): | |
with lock: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Aseprite PSD Library | |
// Copyright (C) 2021 Igara Studio S.A. | |
// | |
// This file is released under the terms of the MIT license. | |
// Read LICENSE.txt for more information. | |
#ifndef PSD_DEBUG_H_INCLUDED | |
#define PSD_DEBUG_H_INCLUDED | |
#pragma once |
OlderNewer