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 1,753
| Author | Revision | Comments | Message | Labels | Date |
|---|---|---|---|---|---|
|
|
f4bdbe826c6e |
pygame 1.9.0rc4 |
|
||
|
gamedude
|
d1e76081e114 |
Using display and font only |
|
||
|
gamedude
|
6900ed9cda35 |
Removed use of temporary surface buffers to reduce memory usage. No new surfaces added either. 2 full surfaces + screen. |
|
||
|
gamedude
|
a242212b2cfa |
Using subsurface for effectZoomOut to get rid of extra surface buffer |
|
||
|
|
97a820e6dcaa |
fix pygame.font.get_fonts() bug for Python 3.1 and Windows |
|
||
|
|
9e48b13b4824 |
continuation of rev 2517 bug fix |
|
||
|
|
9f7668679aa5 |
fix unit tests bug for Python 3.1 on Windows |
|
||
|
|
64baf57aa9d1 |
Windows dependency build now replaces SDL_config.py with SDL_config_win32.py for use with MSVC |
|
||
|
|
50f181c8bbaa |
surface docs typo patch submitted by Lorenz Quack |
|
||
|
|
839ee4eede50 |
pygame.gfxdraw docstrings were not there. |
|
||
|
|
35e02db899ff |
bugzilla 29, patch to use SDL_VIDEO_DRIVER_X11 instead of DISABLE_X11. Thanks Robert A. Lerche. |
|
||
|
|
782569b2be10 |
Mistake in a midi test, comparing against a previously declared variable. |
|
||
|
|
25e3f2cee879 |
pygame 1.9.0rc3 |
|
||
|
|
5c405f80122d |
removed some debugging cruft |
|
||
|
|
939cf63d5ca6 |
python3.1 support for OSX. |
|
||
|
|
b8387770f9f6 |
python3.1 support for OSX. |
|
||
|
|
a6416034d25c |
Another python2.3 fixup for the test code. |
|
||
|
|
3a4458740ead |
python2.3 test code compatibility |
|
||
|
|
13c33c400c47 |
Made the test code compatible with python2.3 again... or more compatible. |
|
||
|
|
27774cf8df55 |
Fixed up quit bug in eventlist.py example. Thanks Evan Kroske! |
|
||
|
|
63551f1253d7 |
Updated color slicing to work with python2.4 again. |
|
||
|
|
c539c651c1ff |
Hopefully this will allow py3k to do color slices. untested. |
|
||
|
|
46cf8eef39cc |
64bit issues with Surface.get_masks and UintFromObj. thanks Lorenz Quack! |
|
||
|
|
7ee7f7ccc71c |
typo in examples/sound_array_demos.py Thanks Evan Kroske! |
|
||
|
|
e66b5b39ef74 |
Thanks to Evan Kroske, for finding typo in examples/sound_array_demos.py |
|
||
|
|
ea521c7d8d61 |
display api bug fix patch submitted by Lorenz Quack |
|
||
|
|
90da5783cad7 |
disable color slice test for Python 3 |
|
||
|
|
cc22a0c62e09 |
patch from campbell barton |
|
||
|
|
29f30466a1d0 |
From Campbell Barton.FloatFromObj speedup. register_quit cleanup. |
|
||
|
|
e6a507b87cda |
typo |
|