Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
7answers
7k views

Best method for reading newline delimited files in Python and discarding the newlines?

I am trying to determine the best way to handle getting rid of newlines when reading in newline delimited files in Python. What I've come up with is the following code, include throwaway code to ...
17
votes
6answers
4k views

Problems with the rails console, RVM and readline

I've installed rvm as a way of making sure that my local development version of ruby is the same as my server's for a particular app i work on (ruby 1.8.7). I've done this, and installed ruby 1.8.7 ...
11
votes
7answers
3k views

Delphi: Alternative to using Reset/ReadLn for text file reading

i want to process a text file line by line. In the olden days i loaded the file into a StringList: slFile := TStringList.Create(); slFile.LoadFromFile(filename); for i := 0 to slFile.Count-1 do ...
11
votes
12answers
21k views

How to read a line from the console in C

What is the simplest way to read a full line in a C console program The text entered might have a variable length and we can't make any assumption about its content.
10
votes
4answers
702 views

Maximum line length for BufferedReader.readLine() in Java?

I use BufferedReader's readLine() method to read lines of text from a socket. There is no obvious way to limit the length of the line read. I am worried that the source of the data can ...
10
votes
5answers
5k views

Installing ipython with readline on the mac

I am using ipython on Mac OS 10.5 with python 2.5.1 (I would actually like to use ipython for 2.6.1, but it doesn't seem to be available?) I installed ipython via easy_install. It works but is ...
8
votes
1answer
111 views

How to make ghci support ^p to go up?

I use Ctrl p a lot instead of up arrow to go up on Terminal. How to make ghci support Ctrl p to go up? I use ghci from ghc98 from port. Mac OS X 10.5.8.
8
votes
5answers
2k views

Press alt + numeric in bash and you get (arg [numeric]) what is that?

Press alt + numeric in bash and you get (arg [numeric]) what is that? (This type of question is better suited for asking a human, instead of trying to "guess" for the correct terminology to search on ...
6
votes
1answer
264 views

Pasting text into IRB is incredibly slow. Readline issue?

When I paste the following text into IRB or PRY running under ruby-enterprise-2011.03, it takes 13 seconds. # Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor ...
6
votes
4answers
356 views

How does a BufferedReader work in Java?

I am processing a number of text files line by line using BufferReader.readlline(). Two files having same size 130MB but one take 40sec to get processed while other takes 75 sec when I noticed one ...
6
votes
1answer
119 views

Python: bind a function to a key

I just started learning python and am writing my own tab-completion function for practice/fun (so no one tell me to us rlcompleter). I'm having some trouble getting actually get the python to call ...
6
votes
2answers
131 views

Can the Perl debugger save the ReadLine history to a file?

I work quit a bit with lib ReadLine and the lib Perl Readline. Yet, the Perl debugger refuses to save the session command line history. Thus, each time I invoke the debugger I lose all of my ...
6
votes
3answers
328 views

Printing rows, Java heap space

I want to print each line from a huge textfile (more than 600 000 MB). But when I try the code below I get "...OutOfMemoryError: Java heap space" right before reaching line number 1 000 000. Is ...
6
votes
2answers
318 views

Programmatically interrupting raw_input

Is there a way to programmatically interrupt Python's raw_input? Specifically, I would like to present a prompt to the user, but also listen on a socket descriptor (using select, for instance) and ...
6
votes
2answers
2k views

How do I compile Readline support into Ruby

My version of ruby was compiled with editline (on os x) and I miss the features of readline in irb. How do I recompile ruby with readline support?
6
votes
4answers
3k views

Reading a line from a streamreader without consuming?

Is there a way to read ahead one line to test if the next line contains specific tag data? I'm dealing with a format that has a start tag but no end tag. I would like to read a line add it to a ...
5
votes
1answer
100 views

Why does gnu readline require me to hit control c twice?

Normally, Control-C sends a sigint to a program, and kills it if it's not caught. The gnureadline library will install handlers for sigint. However, even when disabling those handlers in haskell, I ...
5
votes
5answers
197 views

ReadLine() vs Read() to Get CR and LF Efficiently?

I am working on a C# program to determine the line length for each row in multiple large text files with 100,000+ rows before importing using an SSIS package. I will also be checking other values on ...
5
votes
2answers
1k views

pip installing ipython with readline on OSX Lion

What is required to get ipython fully functional on OSX Lion? I'm trying to get ipython with readline working and having no success. My approach: (inside a virtual environment) pip install ...
5
votes
1answer
347 views

Bash variable expansion on tab complete

I'm running Ubuntu 11.04, and I'm seeing some odd behaviour when I try to use tab-completion in bash on a path that starts with a variable. If I've got TOP=/scratch, and I try to tab-complete: cd ...
5
votes
2answers
431 views

How can I clear the rails console history

When I run rails c and press the up key when irb starts up, I can see the last commands I entered when my app dropped to irb after encountering a debugger command for the ruby-debug gem. I would not ...
5
votes
1answer
401 views

Why does my python interactive console not work properly?

I made a very simple interactive console that I'd like to use in a complicated scraping application. It looks like this: #!/usr/bin/env python # -*- coding: utf-8 -*- import os, sys, codecs, code ...
5
votes
2answers
1k views

Using GNU Readline; how can I add ncurses in the same program?

The title is a bit more specific than my actual goal: I have a command-line program which uses GNU Readline, primarily for command history (i.e. retrieving previous commands using up-arrow) and some ...
5
votes
6answers
2k views

How to implement a python REPL that nicely handles asynchronous output?

I have a Python-based app that can accept a few commands in a simple read-eval-print-loop. I'm using raw_input('> ') to get the input. On Unix-based systems, I also import readline to make things ...
4
votes
1answer
54 views

Shortest way to open file with encoding and readLine() in Java?

What is the shortest way to open file for reading with readLine() method and with setting of it's encoding? Is the following line correct and shortest? BufferedReader reader = new ...
4
votes
4answers
791 views

How to get Readline support in IRB using RVM on Ubuntu 11.10

I have tried everything I can think of to get this to work, to no avail so here I am requesting suggestions on how to debug. Firstly, runnning Ubuntu 11.10 Installed rvm: $ bash < <(curl -s ...
4
votes
2answers
74 views

Why does using Python's '-i' or '-c' options cause readline history from previous sessions to be unavailable?

I'm using a .pythonsetup file to enable readline history in the manner described in the readline module docs. Normally, history from previous interactive interpreter sessions is available when I start ...
4
votes
1answer
180 views

map jj to Esc in inputrc (readline)

How can I map jj to Esc in inputrc so it gets picked up by apps using GNU Readline (python, mongoshell, ...) all works fine on zsh using: bindkey -M viins 'jj' vi-cmd-mode this is my current ...
4
votes
2answers
265 views

using readline() for completion

I've got a question about Readline Library. I want to know if Readline can autocomplete filename from directories in a C program ? I've searched and only seen command name completion. thanks in ...
4
votes
3answers
313 views

Python 3.2 - readline() is skipping lines in source file

I have a .txt file that I created with multiple lines. when I run a for loop, with a count accumulator, it skips lines. It skips the top line, and starts with the second, prints the fourth, the ...
4
votes
1answer
253 views

R problem : closing unused connection + readline

getCommentary=function(){ Commentary=readLines(file("C:\\Commentary\\com.txt")) return(Commentary) close(readLines) closeAllConnections() } I have no idea what is wrong with this ...
4
votes
0answers
220 views

Remove items from iPython's history [closed]

Possible Duplicate: raw_input without leaving a history in readline I'm working on a simple interactive application that relies on iPython. I'm running into a problem where prompting a ...
4
votes
2answers
409 views

How to make python autocompletion display matches?

I have kind of a completer class with an autocompletion function. Simple version: class Completer: def __init__(self): self.words = ["mkdir","mktbl", "help"] self.prefix = None ...
4
votes
4answers
1k views

Why does StreamReader.ReadLine() return a value for a one line file with no newline?

I want to append two text files together. I have one file with a carriage return line feed at the end. Observe file A which is 28 bytes. this is a line in the file\n then I have another file ...
4
votes
5answers
527 views

How many characters can read by using the readline() method in java?

I using readLine() method for reading the text, but i am not aware of how many text can read that method. Ex. String str = in.readLine(); how many texts can read and store on "str"?
4
votes
4answers
565 views

What will give me something like ruby readline with a default value?

If I want to have a prompt on the terminal with a default value already typed in, what library should I use? Ruby's standard Readline.readline() lets me set the history but not fill in a default ...
4
votes
1answer
423 views

How to customize the readline keybindings of ghci

I know ghci supports readline , and keybindings such as ^W and ^U work as expected. But I do wonder whether ghci support the customization of keybindings , just like the way bash deal with inputrc ...
4
votes
1answer
673 views

raw_input without leaving a history in readline

Is there a way of using raw_input without leaving a sign in the readline history, so that it don't show when tab-completing?
4
votes
3answers
1k views

How do I make IPython organize tab completion possibilities by class?

When an object has hundreds of methods, tab completion is hard to use. More often than not the interesting methods are the ones defined or overridden by the inspected object's class and not its base ...
4
votes
2answers
864 views

Is there a nice way of handling multi-line input with GNU readline?

My application has a command line interface, and I'm thinking about using the GNU Readline library to provide history, an editable command line, etc. The hitch is that my commands can be quite long ...
3
votes
5answers
111 views

Bash: Split a string exactly like Readline would split it

Given a string representation of an arbitrary Bash "simple command", how can I split it into an array containing its individual "parts", i.e. the command name and individual parameters, just like the ...
3
votes
1answer
180 views

How to write interactive shell with readline support in scala?

I want to write interactive shell in scala, with support for readline (Ctrl-l, arrow keys, line editing, history, etc.). I know how to do it in python: # enable support for Ctrl-l, arrow keys, line ...
3
votes
1answer
140 views

How can I get (and set) current bash cursor position when using python readline?

I have a python script that takes manages the stdin, stdout, and stderr of any application and allows for readline to be inserted gracefully. Think of any application that has lots of console output, ...
3
votes
2answers
282 views

Readline errors prevent me running rails console

My environment is rails 3.1, ruby 1.9.2, rvm, Xubuntu 11.10. When I try to run the rails console within an app, I am getting require errors pointing at readline. So I am trying to install readline ...
3
votes
1answer
50 views

python zipfile module with TextIOWrapper

I wrote the following piece of code to read a text file inside of a zipped directory. Since I don't want the output in bytes I added the TextIOWrapper to display the output as a string. Assuming ...
3
votes
1answer
151 views

Python readline and UTF-8

I'm trying to use raw_input() with readline and utf-8 encoding (on OSX 10.6.8). Imagine the following snippet: import readline while True: try: inp = raw_input('> ') except ...
3
votes
1answer
55 views

Behaviour of generator in lambda safe against future changes?

I have the following function: | def line_reader_iter(file_object): | while True: | a_line = file_object.readline() | if len(a_line)==0: raise StopIteration | ...
3
votes
2answers
729 views

python tab completion Mac OSX 10.7 (Lion)

Before upgrading to lion, I had tab complete working in a python shell via terminal. Following these instructions, it was possible to have tab complete working. Since upgrading to Lion, I am now ...
3
votes
2answers
2k views

Make error installing Ruby 1.9.2 with RVM and Readline under OSX Lion

I'm having extensive problems getting rvm to work again under OSX Lion. Unsurprisingly, it seems to be a problem with readline, which is noted in several places. HOWEVER, (and this is an update) it ...
3
votes
1answer
195 views

Change newline character .readline() seeks

Is it possible to change the newline character the .readline() method looks for while reading lines? I might have the need to read a stream from a file object that will be delimited in something ...

1 2 3 4 5 6