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 2,247

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