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.3 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 3,076

Author Revision Comments Message Labels Date
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
Lenard Lindstrom 0a3be7313aa4 Enable pygame._freetype extension module build by default
Lenard Lindstrom c0dea2a37788 Update the Windows prebuilt readme to the latest library versions
Lenard Lindstrom aee1b66379f3 Clean up some Windows dependency build issues
Lenard Lindstrom 0fc204ad86ff Combine msys_build_deps.py updates with general bug fixes
Lenard Lindstrom b6a91839297d Combine general bug fix branch with build update branch
Lenard Lindstrom 2298f9290a64 SDL_mixer (changeset 32e5ed415a34) now builds for Python 2.6 and up.
Lenard Lindstrom c5fdbc18a6a6 Fix portmidi build bug introduced by changeset 0a4c41e9337e
Lenard Lindstrom 033ffedfe631 Another libtiff build fix for msvcr90.dll
Lenard Lindstrom 0130d0497e6a Fix libtiff build problem involving switching to the libtiff subdirectory
Lenard Lindstrom d97177a5d9bc libtiff 4.0.0b7 now builds for msvcr90.dll (Python 2.6 and greater)
Lenard Lindstrom 6fd05e81fa14 Update library versions listed in the module doc string
Lenard Lindstrom c14a9ce4496e Fix freetype6/libtool problem with resource object file
Lenard Lindstrom 13b0d1a55ddc Add configure script generation to SDL_ttf build
Lenard Lindstrom 819daf900746 Rename some inconsistently named environment variables
Lenard Lindstrom 37115fe4c38d Add configure script generation to SDL_ttf build
Lenard Lindstrom 868e46a378ee Rename some inconsistently named environment variables
Lenard Lindstrom 1c621f6b9aac Add direct building of msvcr90.dll linked dependencies
Lenard Lindstrom e9063740d378 Static link smpeg to libgcc and libstdc++
Lenard Lindstrom 0a4c41e9337e Update mikmod in Windows deps build chain
Lenard Lindstrom 817c25b429a1 Windows build chain installs most prebuilts
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 102
  8. 103
  9. »