pygame is sharing code with you
Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.
Don't show this againSearching 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 todescendants(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 | yandx + 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. Usegrep(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 2,247
| Author | Revision | Comments | Message | Labels | Date |
|---|---|---|---|---|---|
|
|
67022f320b36 |
Merged in novalis_dt/pygame (pull request #5) |
|
||
|
|
549f3fb44e55 |
Add support for premultiplied alpha, necessary for integration with Cairo. |
|
||
|
"Sam...@sambull.org>"
|
b46af6625954 |
Fix some niggles in the Rect docs. |
|
||
|
|
01b2cb16dc17 |
Update scrap docs for Python 3.x |
|
||
|
|
8d9ce368f8d3 |
Rebuild docs with Sphinx 1.0.2 and Docutils 0.7 |
|
||
|
|
5000f3ee7c23 |
Fix bytes decoding problem in scrap_clipboard.py example (refs #105) |
|
||
|
|
d811a6f742d8 |
Enable scrap on Windows for Python 3.x |
|
||
|
|
b83d8cc291ff |
Apply overlooked issue #109 changes to color.c |
|
||
|
|
fb1a30254d10 |
Apply issue #109 suggested bug fixes. |
|
||
|
|
2b17654d5a05 |
Avoid possible problems with Numpy 1.7 |
|
||
|
|
f8bb07a1bccd |
Fix 3.2 breakage introduced with commit 05eb8d574096 |
|
||
|
|
94f40f0132a8 |
Merged in tito/pygame (pull request #3) |
|
||
|
|
9bc2b0fd79f0 |
doc fixup from illume |
|
||
|
|
f0dc614883e1 |
Add documentation for USEREVENT_DROPFILE in the event.rst |
|
||
|
|
f1ded632090f |
fix tabulation to spaces |
|
||
|
|
3f66b6eef971 |
merge add constants |
|
||
|
|
05eb8d574096 |
Add support for MacOSX OpenFile. This was done in SDL, but not in the pygame implementation. Use a similar approach that SDL 1.3 does, using SDL_USEREVENT + 0x1000 usercode + data1 for filename. |
|
||
|
|
ca7f934ebc3f |
commented out the movie module, since smpeg is a dead dependency. |
|
||
|
|
d916b648d9ec |
configure_dawin fixes for dependency hunting, and CoreMIDI names on case sensitive file systems. Thanks Christopher Arndt. |
|
||
|
|
22efec0b44da |
Fixes for python3.2 on OS X. |
|
||
|
|
0921cc0fbca7 |
Anti-aliased underlines for pygame.freetype |
|
||
|
|
f8608dd8c478 |
Close issue 106 |
|
||
|
|
1c265998cf59 |
Disable camera_mac if OS X is above version 10.6. |
|
||
|
|
c77e8545679f |
Clean up the freetype module doc page |
|
||
|
|
e1bc84d4e387 |
Ignore unversioned Sphinx generated working files |
|
||
|
|
5dc64b073177 |
Change "face" back to "font", ( undoes part of changeset 6425e6865ce4 ) |
|
||
|
|
bfea70225745 |
Make pygame.freetype.SysFont usable |
|
||
|
|
bb542afcdd98 |
Clean up white space in _freetype module source |
|
||
|
|
d55c9fb50b58 |
Update Windows dependency build toolchain for SDL 1.2.15 |
|
||
|
|
0ca386dee6c1 |
Ensure SDL.dll does not create stdout.txt and stderr.txt files |
|