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 again

pygame / pygame http://pygame.org/

Clone this repository (size: 15.4 MB): HTTPS / SSH
hg clone https://bitbucket.org/pygame/pygame
hg clone ssh://hg@bitbucket.org/pygame/pygame

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 1,220

Author Revision Comments Message Labels Date
illume 08a04cbb47d5 change version number to 1.8.1rc2
Tag
release_1_8_1rc2
illume 99ae54bdec54 Added more tests for mask.get_bounding_rects()
illume dbcb360d1330 Updated credits.
akalias 2c1e80696ca2 Extra tests for transform.threshold, updated WHATSNEW
akalias 25886fe3a0e8 Bugfix and test for transform.threshold, updated docs (thanks Nirav), added basic tagging to run_tests.py/test_runner.py.
akalias 02d49ef44d18 removed command line options for individual test_modules, use run_tests.py module --flags to run individual module with options ( fail incomplete etc ). Less conflict with unittest command line parser.
akalias c5fc97366ea6 run_tests.py bugfix
akalias b1f9b5cd0fc3 Added a fail_incomplete test suite
akalias b980a5f91d65 Further bugfixes of run_tests.py, fixed test in mixer_test.py.
illume 798b1e30fce6 Tests pass on win. Changed version check for loading file likes in
akalias 083254a38d4f fixed bug in run_tests.py, add mixer_music_test.py
illume c587b8fa76c4 Added a test for loading music from file like objects.
akalias d35b987caec5 printing to sys.stderr for subprocess mode results
akalias 89a1c912feaa Added a redirect stderr/stdout mode to test runner. Only output unittest results and not test noise
illume 612c22422976 Added patch from Forrest Voight for music from python file objects. Thanks!
akalias f516b5930a15 nightly commit
akalias 41858a3899b1 Fix for async_sub.py unittest, replaced python.exe with sys.executable
akalias 0a0220c1d497 Made *nix async_sub.Popen.kill() give similar return values
akalias b04bf498821c made async_sub.py use signal.SIGKILL instead of signal.SIGTERM
akalias 23cdaf9b0d1c fixed: async_sub.py bug, appending '\r\n' windows line ends to strings sent to processes.
akalias 384960ddd16e fixed bug in *nix async_sub.py for Popen.kill()
akalias 992c3c0f38ea Lenard's proc.kill() patch for async_sub.py
akalias c308d41a6e12 some tests for pygame.threads
akalias d62636804c78 Updated readme on run_tests.py
akalias 632f611d2bdb Fixed unit test in async_sub.py to call "sys.executable xxx.py" instead of .py file directly.
akalias f72abeaa920f Now uses a flat process chain for async_sub.py, no intermediary shell. Uses TerminateProcess for process control.
illume 7b0689ed6295 updating version numbers for 1.8.1rc1
Tag
release_1_8_1rc1
akalias 785b822ecab8 Renamed some rect_test.py tests to match stub generator scheme
akalias 0c9c0deafd71 made run_tests.py only import async_sub when running in subprocess mode
akalias 7047d24afd3b Added in more tests, fixes to gen_stubs.py, replaced run_tests.py with run_tests_sub.py (defaults to single process as b4).
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 40
  8. 41
  9. »