-
Notifications
You must be signed in to change notification settings - Fork 318
Description
Prerequisites
- Write a descriptive title.
- Make sure you are able to repro it on the latest released version
- Search the existing issues, especially the pinned issues.
Exception report
I was programming in python, and the code was very slow to load, I believe it could be this bug, but I don't know how to fix this, I'm begging.Screenshot
Opa, algo deu errado. Relate este bug com os detalhes abaixo.
Relate no GitHub: https://github.com/lzybkr/PSReadLine/issues/new
Últimas 1 Chaves:
&
Exceção:
System.ArgumentOutOfRangeException: O valor deve ser maior ou igual a zero e menor que o tamanho do buffer do console nessa dimensão.
Nome do parâmetro: left
Valor real era -2.
em System.Console.SetCursorPosition(Int32 left, Int32 top)
em Microsoft.PowerShell.Internal.VirtualTerminal.set_CursorLeft(Int32 value)
em Microsoft.PowerShell.PSConsoleReadLine.ReallyRender(RenderData renderData, String defaultColor)
em Microsoft.PowerShell.PSConsoleReadLine.ForceRender()
em Microsoft.PowerShell.PSConsoleReadLine.Insert(Char c)
em Microsoft.PowerShell.PSConsoleReadLine.SelfInsert(Nullable1 key, Object arg) em Microsoft.PowerShell.PSConsoleReadLine.ProcessOneKey(ConsoleKeyInfo key, Dictionary2 dispatchTable, Boolean ignoreIfNoAction, Object arg)
em Microsoft.PowerShell.PSConsoleReadLine.InputLoop()
em Microsoft.PowerShell.PSConsoleReadLine.ReadLine(Runspace runspace, EngineIntrinsics engineIntrinsics)

Environment data
# def lowercase(a):
# return a.upper()
# print(lowercase("isso é um teste"))
nome = input("Qual seu nome?: ")
print(nome.find('@'))Steps to reproduce
def lowercase(a):
return a.upper()
print(lowercase("isso é um teste"))
nome = input("Qual seu nome?: ")
print(nome.find('@'))
Expected behavior
def lowercase(a):
return a.upper()
print(lowercase("isso é um teste"))
nome = input("Qual seu nome?: ")
print(nome.find('@'))
Actual behavior
def lowercase(a):
return a.upper()
print(lowercase("isso é um teste"))
nome = input("Qual seu nome?: ")
print(nome.find('@'))