Buffered Stream with Multiple Forward Only Readers

Buffered Stream with Multiple Forward-Only Readers 1.0

Buffered Stream with Multiple Forward-Only Readers 1.0 Download Summary

  • Language: Python
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 394
  • Released: Jun 7, 2007

Buffered Stream with Multiple Forward-Only Readers 1.0 Description

This script provides a buffered stream that supports multiple forward-only readers.

The buffer enables readers that are behind the front-runner to access values that have already been read from the stream. Values that are no longer accessible by any reader are cleared from the buffer.

Buffered Stream with Multiple Forward-Only Readers 1.0 Keywords

Buffered Stream with Multiple Forward Only Readers Bookmark

Hyperlink code:
Hyperlink for Forum code:

Buffered Stream with Multiple Forward-Only Readers 1.0 Script Download Notice

Top 4 Download periodically updates information of Buffered Stream with Multiple Forward-Only Readers 1.0 script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. Buffered Stream with Multiple Forward-Only Readers 1.0 torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

Automatic indentation of output

This script is an output stream wrapper; possibly useful for debugging code with print statements. When write() is called, it makes a note of the calling frame. The indentation level is equal to the number of frames in the call ...
Python

Lazy streams using generators

... allows you to use generators as more list-like streams. The chief advantage is that it is impossible ... through a generator more than once, while a stream can be re-used like a list. ...
Python

Arrayterator

This class creates a buffered iterator for reading big arrays in small contiguous ... the filesystem. It allows iteration over the object without reading everything in memory; instead, small blocks are ... and iterated over. The class can be used with any object that supports multidimensional slices and a copy() method, like ...
Python

Metaclass Class Policies

... design pattern in Python by using metaclasses and multiple inheritance. ...
Python

List iterator with advance and regress

... iterator for a list doesn't allow one to skip forward (except with "continue"), or backward (at all), nor does it behave well if the list is modified while it is being traversed. This script is NOT the be-all ...
Python