Google Code Exporter
Google Code Exporter
``` Use: SHELL?=$(BIN)/sh RM?= $(BIN)/rm AR?= $(BIN)/ar CC?= $(BIN)/gcc LD?= $(BIN)/ld Instead of: SHELL=$(BIN)/sh RM= $(BIN)/rm AR= $(BIN)/ar CC= $(BIN)/gcc LD= $(BIN)/ld ``` Original issue reported on code.google.com by `Stephane.D`...
``` Could be interesting to add VDP_drawNum() and VDP_drawNumBG(), joining VDP_drawText() and IntToStr() to write numbers directly on screen using these functions. ``` Original issue reported on code.google.com by `[email protected]`...
``` There is a bug that doesn't allow to use drop-down menu on right-click with certain amount of sessions wo would be great to have a configurable shortcut to restart...
``` What steps will reproduce the problem? 1. Open a connection in SP 2. Go full Screen 3. Try to Alt+Tab to other windows application What is the expected output?...
``` What steps will reproduce the problem? 1. Open superputty with multiple tabs and a horizontal split screen 2. Alt+Tab between windows applications What is the expected output? What do...
``` What steps will reproduce the problem? 1. have window open to any ssh client 2. middle-click on tab rather than window 3. tab closes, even if it was not...
``` I'm using SuperPuTTY with kitty_portable.exe In this way I've a little problem. KiTTY has the possibility to store all sessions in folder. But I don't know, how to access...
``` Currently, asyncio doesn't provide any helper to read asynchronously data from sys.stdin, like input(). Twisted implements twisted.internet.stdio: https://twistedmatrix.com/trac/browser/trunk/twisted/internet/stdio.py https://twistedmatrix.com/trac/browser/trunk/twisted/internet/_posixstdio.py https://twistedmatrix.com/trac/browser/trunk/twisted/internet/process.py#L106 https://twistedmatrix.com/trac/browser/trunk/twisted/internet/_win32stdio.py See also https://code.google.com/p/tulip/issues/detail?id=147 ``` Original issue reported on...
``` Currently, asyncio calls the standard getaddrinfo() function in a thread because this function is blocking. There is no standard asynchronous functio to resolve an host name. It would be...
``` See http://tools.ietf.org/html/rfc6555 See also the HostnameEndpoint class in Twisted (new in Twisted 13.2). ``` Original issue reported on code.google.com by `[email protected]` on 12 Nov 2013 at 10:10