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 151–180 of 3,097

Author Revision Comments Message Labels Date
marcus 0bc75c9b0fb9 Started documenting the OpenAL interfaces.
Branch
pgreloaded
marcus 852695e94710 Adedd OpenMP support for blit and fill operations.
Branch
pgreloaded
marcus 42e24f6979b8 Fixed zip doc bundling. Fixed fill operation for 1bpp surfaces.
Branch
pgreloaded
marcus eca685704e24 Added doppler shift support to openal contexts.
Branch
pgreloaded
marcus c49a85b47c0b Trimmed down blit and fill functions to allow easier modification of the core algorithm.
Branch
pgreloaded
marcus 8ff0bbe8edd7 Fixed and improved openal' error handling.
Branch
pgreloaded
marcus 84e93910d5c9 Added basic openal.CaptureDevice implementation.
Branch
pgreloaded
marcus 6d536aa880e7 Added openal Sources and Listener support.
Branch
pgreloaded
marcus 15ea829bf58b Added basic openal buffers wrapper.
Branch
pgreloaded
marcus 9e033a37a9e1 Added WITH_EXPERIMENTAL flag for experimental module builds.
Branch
pgreloaded
marcus 9c48682a9233 Fixed some pedantic warnings.
Branch
pgreloaded
marcus 0538c6e3a0aa Fixed pygame2.resources for Python 3.1
Branch
pgreloaded
marcus 00db689b2379 Minor code cleanups and pointer fixes.
Branch
pgreloaded
marcus b5101c2772e0 Added new buildallclang Makefile target. Improved environment flag handling for clang compiler.
Branch
pgreloaded
marcus b943e154d491 Minor documentation fixes.
Branch
pgreloaded
marcus 13d60febba09 Added experimental Clang and ICC compiler support.
Branch
pgreloaded
marcus e4b0c648cc8d Renamed base C API methods from *Object -> *Obj
Branch
pgreloaded
marcus a5dfd16c03cd Improved sdlgfx.primitives example
Branch
pgreloaded
marcus 19da6dc7a845 Added sdlgfx.primitives example.
Branch
pgreloaded
marcus 0efdd22c62ec Added simple sdl.joystick example.
Branch
pgreloaded
marcus c3d2b5f034e5 Fixed png DLL detection for Win32.
Branch
pgreloaded
marcus 7cdaf68ade02 Opening audio devices needs threads for recent SDL_mixer versions.
Branch
pgreloaded
marcus b184f969f6d7 Use the correct pkg-config file for SDL_mixer
Branch
pgreloaded
marcus 817356a9fc9a Fixed colorkey loss on saving a sdl.video.Surface as png file.
Branch
pgreloaded
marcus 5f4a3d7029a8 Added valgrind script for memory leak checking.
Branch
pgreloaded
marcus b7d11eb033eb DO not use SSIZE_MAX - it's POSIX - use SIZE_MAX instead.
Branch
pgreloaded
marcus 39a061bf82a6 Fixed module initialization and memory leakage.
Branch
pgreloaded
marcus 4a543b735ecd Made openal module publicly available. Fixed source naming.
Branch
pgreloaded
marcus a2e7c0f59b37 Added openal.Device skeleton.
Branch
pgreloaded
marcus 17178e6e1d29 Added msys build support for openal-soft.
Branch
pgreloaded
  1. «
  2. 1
  3. 2
  4. 3
  5. 4
  6. 5
  7. 6
  8. 7
  9. 8
  10. 103
  11. 104
  12. »