Fredrik Lundh 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

effbot / pil-2009-raclette http://effbot.org/zone/pil-index.htm

Work repository for PIL 1.1.7 and beyond. The "default" branch should be fairly solid, the other branches less so. For production use, see the pil-117 repository.

Clone this repository (size: 1.6 MB): HTTPS / SSH
hg clone https://bitbucket.org/effbot/pil-2009-raclette
hg clone ssh://hg@bitbucket.org/effbot/pil-2009-raclette

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 335

Author Revision Comments Message Labels Date
Fredrik Lundh 4a8cdcc1da74 Fixed download URL.
Tag
pil-117-20091115
Fredrik Lundh 162542cc8aca Release tweaks.
Fredrik Lundh 04b67bc269e9 Set loop property to number of iterations, instead of just setting it
Fredrik Lundh 9246ae122573 Fixed directory name in SHIP script.
Fredrik Lundh 9674fa77f346 Fixed return type (broken earlier lint fix).
Fredrik Lundh ad1ac1c04955 Added missing lena.png file.
Fredrik Lundh a850ca53d722 Tag tweaks.
Fredrik Lundh a0b1d863b1fe Added tag pil-117c1-20091101 for changeset 1098bb18b1c5
Fredrik Lundh 1098bb18b1c5 Various lint fixes.
Tag
pil-117c1-20091101
Fredrik Lundh bbc9ab56ab5b Release candidate preparations.
Fredrik Lundh e8173bbed6a0 The last part in the version number was supposed to be optional.
Fredrik Lundh be7983fa5d30 Fixed numpy 1.3.0 support.
Fredrik Lundh 6bf3439b4e0f Added clean option to BUILDME helper.
Fredrik Lundh cad4796b9fe6 Import from PIL package.
Fredrik Lundh e4b39815e3c7 More lint fixes.
Fredrik Lundh 6cfb688a54bc Fixed some minor lint issues.
Fredrik Lundh e0621eb6bdab Reindent to match PIL style.
Fredrik Lundh 0fb742355cf8 More cookies.
Fredrik Lundh 3ea0d1bfb301 Use section cookies to control threading.
Fredrik Lundh 6358686cd645 Release preparations.
Fredrik Lundh b45ae8b26f1b Fixed compiler nit in UnsharpMask.c
Fredrik Lundh 5a077410489a Fixed compiler nit.
Fredrik Lundh 3943b4cd9d9c Detect I/O errors.
Fredrik Lundh 8453bc9e9a7f Fix version number check for patched versions (e.g. Ubuntu 9.10).
Fredrik Lundh a9c5b2966afe Fixed a few more ssize_t issues (from Collin Winter).
Fredrik Lundh 603dd5ef8849 Change list update.
Alexey Borzenkov 159b8f42e079 Fix ancient bug with zlib deflating
Fredrik Lundh 82a93948919b Reverted accidental release tagging.
Fredrik Lundh 0567041e46ec Added tag pil-117, pil-117-20090801 for changeset d6a2c1415563
Fredrik Lundh d6a2c1415563 Release preparations.
Tag
pil-117b2-20090801
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. »