bobf is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

bobf / bpython http://bpython-interpreter.org/

Fancy curses interface to the Python interpreter

Clone this repository (size: 838.8 KB): HTTPS / SSH
hg clone https://bitbucket.org/bobf/bpython
hg clone ssh://hg@bitbucket.org/bobf/bpython

Searching for commits

Mercurial supports a functional language for selecting a set of revisions.

The language supports a number of predicates which are joined by infix operators. Parenthesis can be used for grouping.

Identifiers such as branch names must be quoted with single or double quotes if they contain characters outside of [._a-zA-Z0-9\x80-\xff] or if they match one of the predefined predicates.

Prefix operators

not x
Changesets not in x. Short form is ! x.

Infix operators

x::y

A DAG range, meaning all changesets that are descendants of x and ancestors of y, including x and y themselves. If the first endpoint is left out, this is equivalent to ancestors(y), if the second is left out it is equivalent to descendants(x).

An alternative syntax is x..y.

x:y
All changesets with revision numbers between x and y, both inclusive. Either endpoint can be left out, they default to 0 and tip.
x and y
The intersection of changesets in x and y. Short form is x & y.
x or y
The union of changesets in x and y. There are two alternative short forms: x | y and x + y.
x - y
Changesets in x but not in y.

Predicates

all()
All changesets, the same as 0:tip.
ancestor(single, single)
Greatest common ancestor of the two changesets.
ancestors(set)
Changesets that are ancestors of a changeset in set.
author(string)
Alias for user(string).
bookmark([name])
The named bookmark or all bookmarks.
branch(set)
All changesets belonging to the branches of changesets in set.
children(set)
Child changesets of changesets in set.
closed()
Changeset is closed.
date(interval)
Changesets within the interval, see hg help dates.
descendants(set)
Changesets which are descendants of changesets in set.
file(pattern)
Changesets affecting files matched by pattern.
follow()
An alias for ::. (ancestors of the working copy's first parent).
grep(regex)
Like keyword(string) but accepts a regex. Use grep(r'...') to ensure special escape characters are handled correctly.
head()
Changeset is a named branch head.
heads(set)
Members of set with no children in set.
id(string)
Revision non-ambiguously specified by the given hex string prefix.
keyword(string)
Search commit message, user name, and names of changed files for string.
limit(set, n)
First n members of set.
max(set)
Changeset with highest revision number in set.
merge()
Changeset is a merge changeset.
min(set)
Changeset with lowest revision number in set.
p1([set])
First parent of changesets in set, or the working directory.
p2([set])
Second parent of changesets in set, or the working directory.
parents([set])
The set of all parents for all changesets in set, or the working directory.
present(set)
An empty set, if any revision in set isn't found; otherwise, all revisions in set.
rev(number)
Revision with the given numeric identifier.
roots(set)
Changesets with no parent changeset in set.
tag(name)
The specified tag by name, or all tagged revisions if no name is given.
user(string)
User name is string.

Commits 1–30 of 767

Author Revision Comments Message Labels Date
Simon de Vlieger f30d8feb21c0 Bump version number
Tag
0.10-release
Andreas Stührk 4b9fe102f173 Merge.
Andreas Stührk a276b23b1ac2 Only encode docstring if it's an unicode string.
Sebastian Ramacher 2b3a5bc4385c Replace -c with --config in documentation and tests.
Andreas Stührk fc67f34f365a Drop "-c" config option as it conflicts with vanilla Python's "-c" option.
Andreas Stührk 07ddb892dcf3 Fix incorrect option name in sample-config.
Andreas Stührk d8d4c92376f6 Don't lose the session history if an EnvironmentError occurs.
Simon de Vlieger 7d2c7938558b New artwork, courtesy of Leo Hutson!
Andreas Stührk 9e7668e8a254 Merge in Anatoly's changes.
anatoly techtonik d4e93ede9e22 cli: init_wins() colors argument is not used
anatoly techtonik 515524831e08 cli: minor whitespace, copyright and typo
anatoly techtonik 50f48f247dc2 cli: clean up globals and make them explicit
Andreas Stührk fd740b9b73ad Add Amjith and Sebastian to AUTHORS.
Andreas Stührk ed600c4f1399 Make size of suggestion window configurable.
Simon de Vlieger ada917fa94dc Reformat text, needs i18n needs crash checking for long filenames which wrap
Simon de Vlieger d86fc8c9704a Maintain 2.5 compatibility
Simon de Vlieger 994604943e4c Make it so we setting hist_length to zero does not cause you to not have session history
Amjith Ramanujam 381695ce3882 Exception handling for file IO events while saving history.
Amjith Ramanujam a3897cf39d8f Read in the history file before writing. This prevents stomping of history from multiple bpython sessions. History from multiple sessions will be interleaved.
Amjith Ramanujam cd665e2ed07e Passing in hist_length to save(), so we'll start honoring the history length in the config file.
Amjith Ramanujam 8fe1d0a2f59e Removed redundant history.save() calls in gtk_.py, cli.py and urwid.py.
Amjith Ramanujam bc4a8a7a0e65 Added feature to append each command to the python history file as soon as user presses enter on the repl.
Andreas Stührk 06758a7b8e4c Fix keyword-only arguments in argspec.
Simon de Vlieger 61c0202e81ca Added a Dutch translation file
Andreas Stührk 1f9c109f0d1d Workaround for issue #166.
Andreas Stührk 9fb8524eb3f7 Always use repr() for displaying argument default values.
Andreas Stührk 24972145f795 Revert some unwanted changes that sneaked in with 0477d51550ab.
Andreas Stührk a761f5fb706f Second attempt at making b0efd741dfd7 compatible with Python 2.5.
Andreas Stührk 32a235b4aa01 Add a isatty() method to CLIRepl. Refs #149.
Łukasz Langa 086be2e9e051 with taken from the future (2.5 compatibility)
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 25
  8. 26
  9. »