Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v3.3.0
e054f45
Fix test_sys.test_implementation for final releases.
by Georg Brandl
· 13 years ago
v3.3.0
1628eaa
Added tag v3.3.0 for changeset de6b91d97113
by Georg Brandl
· 13 years ago
1d02173
Update release date in whatsnew document.
by Georg Brandl
· 13 years ago
c7dcd50
Bump version to 3.3.0 final.
by Georg Brandl
· 13 years ago
d6e857b
Point "source" links in the docs to the 3.3 versions in the repo.
by Georg Brandl
· 13 years ago
a79b8dc
Add a versionchanged note for #9374 changes.
by Georg Brandl
· 13 years ago
3d78385
Issue #16060: Fix a double DECREF in int() implementation. Thanks Serhiy Storchaka.
by Mark Dickinson
· 13 years ago
0beb4d2
don't depend on __debug__ because it's baked in at freeze time (issue #16046)
by Benjamin Peterson
· 13 years ago
d0af310
Close #16022: What's New in Python 3.3 document is no more at beta stage
by Victor Stinner
· 13 years ago
d37b9d7
Port #16012 fix: parameter parsing regression in pyexpat parser UseForeignDTD() method.
by Georg Brandl
· 13 years ago
f248717
Post-release updates.
by Georg Brandl
· 13 years ago
700765f
Added tag v3.3.0rc3 for changeset c191d21cefaf
by Georg Brandl
· 13 years ago
8506d35
Bump to 3.3.0rc3.
by Georg Brandl
· 13 years ago
v3.3.0rc3
6147515
Add news entries for recent changes.
by Georg Brandl
· 13 years ago
ab816b5
GCC doesn't support typeof in strict ansi mode (e.g. -ansi or -std=c89)
by Christian Heimes
· 13 years ago
b8cd700
Use C-style comments for C89 / ANSI C compatibility
by Christian Heimes
· 13 years ago
a4b4dea
Use C-style comments (required for the AIX build slave).
by Stefan Krah
· 13 years ago
f817a7b
Use C-style comments.
by Stefan Krah
· 13 years ago
8f734eb
Fixed reference leak in error branch of _bufferedreader_read_all(). The variable data can contain a bytes object but it wasn't cleaned up when PyList_New() failed. CID 715364
by Christian Heimes
· 13 years ago
fd30236
Fixed memory leak in error branch of formatfloat(). CID 719687
by Christian Heimes
· 13 years ago
be23292
Fix issue number.
by Georg Brandl
· 13 years ago
60eba57
Cleanup/rewrite shutil docs regarding follow_symlinks and copying attributes.
by Larry Hastings
· 13 years ago
dc07bac
Mention that "defaults" can be None for inspect.getfullargspec.
by Larry Hastings
· 13 years ago
9471797
Add What's New entries for some minor work I did in 3.3.
by Larry Hastings
· 13 years ago
1960641
Fixed out-of-bounce write to rawmode buffer. The fixed size buffer wasn't enlarged for the new 'x' flag. The buffer may contain the 5 flags xrwa+ and the \0 byte
by Christian Heimes
· 13 years ago
bdc7e69
Issue #15900: Fixed reference leak in PyUnicode_TranslateCharmap()
by Christian Heimes
· 13 years ago
0085a24
Closes #15973: fix a segmentation fault when comparing timezone objects.
by Georg Brandl
· 13 years ago
fd296ff
Issue #15926: Fix crash after multiple reinitializations of the interpreter.
by Antoine Pitrou
· 13 years ago
1aca31e
Closes #15925: fix regression in parsedate() and parsedate_tz() that should return None if unable to parse the argument.
by Georg Brandl
· 13 years ago
deb92b5
Closes #15969: rename new API to have consistent names in the faulthandler module.
by Georg Brandl
· 13 years ago
ebf7f95
Fix NEWS entry location.
by Georg Brandl
· 13 years ago
63b38bb
Issue #15977: Fix memory leak in Modules/_ssl.c when the function _set_npn_protocols() is called multiple times
by Christian Heimes
· 13 years ago
f022aa5
Spacing fix.
by Georg Brandl
· 13 years ago
dbcf103
Issue #15882: Change _decimal to accept any coefficient tuple when
by Stefan Krah
· 13 years ago
6c4b095
Updates NEWS for issue #15895
by Christian Heimes
· 13 years ago
04ac4c1
Issue #15895: my analysis was slightly off. The FILE pointer is only leaked when set_main_loader() fails for a pyc file with closeit=0. In the success case run_pyc_file() does its own cleanup of the fp. I've changed the code to use another FILE ptr for pyc files and moved the fclose() to PyRun_SimpleFileExFlags() to make it more obvious what's happening.
by Christian Heimes
· 13 years ago
eeb5635
Issue #15895: Fix FILE pointer leak in PyRun_SimpleFileExFlags() when filename points to a pyc/pyo file and closeit is false.
by Christian Heimes
· 13 years ago
05823f7
Post-release updates for 3.3.0rc2.
by Georg Brandl
· 13 years ago
023e03b
Added tag v3.3.0rc2 for changeset 88a0792e8ba3
by Georg Brandl
· 13 years ago
9e31d36
Issue #15814: Update whatsnew to the current state of hashing memoryviews.
by Stefan Krah
· 13 years ago
v3.3.0rc2
0b164c0
Issue #15814: Add NEWS entry regarding intended memoryview hashing restrictions
by Nick Coghlan
· 13 years ago
9c8ad07
Issue #15814: Documentation: disallow hashing of multi-dimensional memoryviews.
by Stefan Krah
· 13 years ago
02f66cb
Bump to 3.3.0rc2.
by Georg Brandl
· 13 years ago
070175d
Fix NEWS entry location.
by Georg Brandl
· 13 years ago
24ec054
Issue #15822: Fix installation of lib2to3 grammar pickles to ensure
by Ned Deily
· 13 years ago
2b0218a
Issue #13992: The trashcan mechanism is now thread-safe. This eliminates
by Antoine Pitrou
· 13 years ago
ef06595
Changelog entry for 8c2e87aeb707.
by Georg Brandl
· 13 years ago
55c206a
Fix bug with argparse.Parser.parse_args(*args)
by Zbigniew Jędrzejewski-Szmek
· 13 years ago
af3f3a7
Closes #10650: Deprecate the watchexp parameter of Decimal.quantize().
by Stefan Krah
· 13 years ago
9ecae7a
Issue #15814: Document planned restrictions for memoryview hashes in 3.3.1.
by Stefan Krah
· 13 years ago
2a70535
Issue #15724: Add versionchanged tags to the memoryview documentation.
by Stefan Krah
· 13 years ago
a3f4a16
Add missing unit.
by Stefan Krah
· 13 years ago
ceaaced
Compile _decimal without asserts and update benchmark results.
by Stefan Krah
· 13 years ago
eaaf9e9
Close #14223: Fix window.addch(curses.ACS_HLINE)
by Victor Stinner
· 13 years ago
848cdfd
Issue #15828: Don't try to close a file if imp.find_module() doesn't return one.
by Brett Cannon
· 13 years ago
91b9f13
Issue #15828: Restore support for C extension modules in imp.load_module()
by Nick Coghlan
· 13 years ago
380c55c
Issue #15340: Fix importing the random module when /dev/urandom cannot be opened.
by Antoine Pitrou
· 13 years ago
0398985
Issue #15781: Fix two small race conditions in import's module locking.
by Antoine Pitrou
· 13 years ago
3014771
Issue #15784: Modify OSError.__str__() to better distinguish between
by Richard Oudkerk
· 13 years ago
ca2b646
Issue #15785: Modify window.get_wch() API of the curses module: return a
by Victor Stinner
· 13 years ago
3694401
Post-release updates.
by Georg Brandl
· 13 years ago
44ac850
Added tag v3.3.0rc1 for changeset 8bb5c7bc46ba
by Georg Brandl
· 13 years ago
4ab4ec2
Bump to 3.3.0rc1.
by Georg Brandl
· 13 years ago
v3.3.0rc1
d183f0b
Update pydoc topics and suspicious markup file.
by Georg Brandl
· 13 years ago
cb460b9
Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is
by Ronald Oussoren
· 13 years ago
2543756
Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is compiled using the clang compiler
by Ronald Oussoren
· 13 years ago
cc0274b
merge with 3.2
by Georg Brandl
· 13 years ago
c8076df
Fix wrong way of adding Error information in shutil.copytree.
by Georg Brandl
· 13 years ago
06e1ab0
Close #15573: use value-based memoryview comparisons (patch by Stefan Krah)
by Nick Coghlan
· 13 years ago
5c0b1ca
Update various OS X README files for 3.3.0.
by Ned Deily
· 13 years ago
12c6bda
Issue #15316: Let exceptions raised during imports triggered by the
by Brett Cannon
· 13 years ago
7a54d16
Null merge from 3.2
by Mark Dickinson
· 13 years ago
6f64796
Remove overeager test (don't depend on the sign of a nan; cf. issue #14521)
by Mark Dickinson
· 13 years ago
a6894ba
Reverted change to venv initialisation.
by Vinay Sajip
· 13 years ago
3bb6318
Null merge
by Mark Dickinson
· 13 years ago
448f577
Remove incorrect lines (meant for cdecimal) from recently added Decimal tests.
by Mark Dickinson
· 13 years ago
4510977
Null merge from 3.2.
by Mark Dickinson
· 13 years ago
e4204bc
Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs.
by Mark Dickinson
· 13 years ago
029780b
Issue #13072: The array module's 'u' format code is now deprecated and
by Stefan Krah
· 13 years ago
8d649ef
Merge
by Antoine Pitrou
· 13 years ago
fc33d4c
Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs.
by Mark Dickinson
· 13 years ago
0ac0b11
Add glossary references
by Antoine Pitrou
· 13 years ago
15251a9
Add glossary references
by Antoine Pitrou
· 13 years ago
cb0ec7d
Merge
by Antoine Pitrou
· 13 years ago
ba0a3ed
Issue #2051: Tweak last commit for this issue to pass in mode instead
by Brett Cannon
· 13 years ago
cbf9d5f
Issue #14674: Add a discussion of the json module's standard compliance.
by Antoine Pitrou
· 13 years ago
331624b
Issue #14674: Add a discussion of the json module's standard compliance.
by Antoine Pitrou
· 13 years ago
07c6e71
Issue #15778: Coerce ImportError.args to a string when it isn't already one.
by Brett Cannon
· 13 years ago
491b1dc
Closes #9374: merge with 3.2
by Georg Brandl
· 13 years ago
a61b09f
Closes #9374: add back now-unused module attributes; removing them is a backward compatibility issue, since they have a public-seeming name.
by Georg Brandl
· 13 years ago
82649f3
Issue #15776: Allow pyvenv to work in existing directory with --clean.
by Andrew Svetlov
· 13 years ago
ad2a7d5
Merge #15249: Mangle From lines correctly when body contains invalid bytes.
by R David Murray
· 13 years ago
638d40b
#15249: Mangle From lines correctly when body contains invalid bytes.
by R David Murray
· 13 years ago
4784e02
Output lib files for PGO build into PGO directory.
by Martin v. Löwis
· 13 years ago
5951ec0
Pick up 32-bit launcher from PGO directory on 64-bit PGO build.
by Martin v. Löwis
· 13 years ago
bddf724
Drop PC\python_nt.h as it's not used.
by Martin v. Löwis
· 13 years ago
b4b92be
Issue #15511: Drop explicit dependency on pythonxy.lib from amd64 configuration.
by Martin v. Löwis
· 13 years ago
3234cc8
Add missing PGI/PGO configurations for pywlauncher.
by Martin v. Löwis
· 13 years ago
a4b0701
Merge with 3.2
by Ross Lagerwall
· 13 years ago
f2b34b8
Issue 15777: Fix a refleak in _posixsubprocess.
by Ross Lagerwall
· 13 years ago
Next »