| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | #11906 Make test_argparse work interactively by removing extra space | Terry Jan Reedy | 2012-01-09 | 1 | -4/+6 |
| | | | | | in comparison string that argparse does not add when program name is blank. | ||||
| * | Issue #13747: fix SSL compatibility table. | Antoine Pitrou | 2012-01-09 | 1 | -1/+1 |
| | | |||||
| * | Issue #13747: fix documentation error about the default SSL version. | Antoine Pitrou | 2012-01-09 | 1 | -3/+2 |
| | | |||||
| * | Py_SetPythonHome() can be called before Py_Initialize(); thanks to Cody ↵ | Sandro Tosi | 2012-01-07 | 1 | -1/+1 |
| | | | | | Smith from docs@ | ||||
| * | clarify recv* are blocking operations; thanks to Chris Kogelnik from docs@ | Sandro Tosi | 2012-01-07 | 1 | -3/+6 |
| | | |||||
| * | Clarify that vars() doesn't place extra restrictions on __dict__. | Raymond Hettinger | 2012-01-06 | 1 | -7/+9 |
| | | |||||
| * | Issue #12042: a queue is only used to retrive results; preliminary patch by ↵ | Sandro Tosi | 2012-01-05 | 1 | -2/+2 |
| | | | | | Jordan Stadler | ||||
| * | Issue #11984: remove reference to parser, it's not showing symbol usage anymore | Sandro Tosi | 2012-01-05 | 1 | -7/+0 |
| | | |||||
| * | Issue #10772: add count and help argparse action; patch by Marc Sibson | Sandro Tosi | 2012-01-04 | 1 | -0/+13 |
| | | |||||
| * | fix this to not depend on dictionary order | Benjamin Peterson | 2012-01-03 | 1 | -4/+4 |
| | | |||||
| * | Issue #13636: Weak ciphers are now disabled by default in the ssl module | Antoine Pitrou | 2012-01-03 | 3 | -2/+37 |
| | | | | | (except when SSLv2 is explicitly asked for). | ||||
| * | Issue #6031: improve serve_forever() description | Sandro Tosi | 2012-01-03 | 1 | -3/+4 |
| | | |||||
| * | Issue #9349: add argparse.SUPPRESS to help doc | Sandro Tosi | 2012-01-03 | 1 | -0/+11 |
| | | |||||
| * | Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by | Charles-François Natali | 2012-01-02 | 4 | -8/+35 |
| | | | | | Vilmos Nebehaj. | ||||
| * | Issue #13302: backport part of 3ed28f28466f | Sandro Tosi | 2012-01-01 | 1 | -0/+5 |
| | | |||||
| * | Issue #13690: add re.DEBUG; patch by Filip Gruszczyński | Sandro Tosi | 2012-01-01 | 1 | -0/+5 |
| | | |||||
| * | Update copyright dates in Mac plists. | Ned Deily | 2012-01-01 | 4 | -7/+7 |
| | | |||||
| * | add another year to glorious PSF IP | Benjamin Peterson | 2012-01-01 | 6 | -9/+9 |
| | | |||||
| * | fix some broken URLs | Sandro Tosi | 2011-12-31 | 5 | -12/+14 |
| | | |||||
| * | Some formatting & grammar fixes for the multiprocessing doc | Eli Bendersky | 2011-12-31 | 1 | -17/+17 |
| | | |||||
| * | use booleans | Benjamin Peterson | 2011-12-30 | 1 | -1/+1 |
| | | |||||
| * | Limit test scope to those platforms that can save the target filenames. ↵ | Jason R. Coombs | 2011-12-28 | 1 | -0/+17 |
| | | | | | Reference #11638. | ||||
| * | propgate error in other conditions | Benjamin Peterson | 2011-12-27 | 1 | -0/+1 |
| | | |||||
| * | Issue #11638: Adding test to ensure .tar.gz files can be generated by sdist ↵ | Jason R. Coombs | 2011-12-26 | 3 | -2/+54 |
| | | | | | | | | command with unicode metadata, based on David Barnett's patch. Issue #11638: Added tests to capture failures in make_tarball with various unicode strings. Following fix for Issue #13639, these tests now pass. | ||||
| * | I do not think we will ever have auto-indent at the prompt, that is for ↵ | Georg Brandl | 2011-12-25 | 1 | -7/+7 |
| | | | | | IPython and the like. | ||||
| * | fix "Title underline too short" sphinx warning | Sandro Tosi | 2011-12-25 | 1 | -1/+1 |
| | | |||||
| * | use double-quote char instead of unicode ones; thanks to tomo cocoa from docs@ | Sandro Tosi | 2011-12-25 | 1 | -1/+1 |
| | | |||||
| * | fix to sent/send typo | Sandro Tosi | 2011-12-25 | 1 | -1/+1 |
| | | |||||
| * | fix Constuctor/Constructor typo; thanks to Anthon van der Neut from docs@ | Sandro Tosi | 2011-12-25 | 1 | -1/+1 |
| | | |||||
| * | point IronPython to ironpython.net; thanks to Lazar Pancic from docs@ | Sandro Tosi | 2011-12-24 | 1 | -1/+1 |
| | | |||||
| * | fix Rather that/Rather than; thanks to Reuben Thomas from docs@ | Sandro Tosi | 2011-12-24 | 1 | -1/+1 |
| | | |||||
| * | remove spurious dot from string formatting example; thanks to Anthon van der ↵ | Sandro Tosi | 2011-12-24 | 1 | -1/+1 |
| | | | | | Neut from docs@ | ||||
| * | correct syslog.openlog() argument name to logoption; thanks to Arnaud ↵ | Sandro Tosi | 2011-12-24 | 1 | -3/+3 |
| | | | | | Gomes-do-Vale from docs@ | ||||
| * | Issue #13565: Increase multiprocessing's server socket backlog, to avoid | Charles-François Natali | 2011-12-23 | 1 | -1/+1 |
| | | | | | dropped connections in case of simultaneous connection requests. | ||||
| * | port to 2.7 - Minor code style improvements in http.server suggested in ↵ | Senthil Kumaran | 2011-12-23 | 1 | -6/+3 |
| | | | | | Issue13294. | ||||
| * | Update News entry. | Senthil Kumaran | 2011-12-23 | 1 | -0/+2 |
| | | |||||
| * | porting mimetype doc changes from 3.2. | Senthil Kumaran | 2011-12-23 | 1 | -57/+65 |
| | | | | | | | Issue12798 - Update mimetypes documentation. Correct the doc section where common_types was mentioned under MimeTypes class, move it to helper function category and other documentation improvements contributed by Sandro Tosi. | ||||
| * | Issue13443 - Remove the functional module examples from 2.7 (as module is | Senthil Kumaran | 2011-12-22 | 1 | -138/+12 |
| | | | | | | maintained only till 2.5 and tests had failures with 2.7) and update the links int the howto document. | ||||
| * | Issue #13639: Accept unicode filenames in tarfile.open(mode="w|gz"). | Lars Gustäbel | 2011-12-21 | 3 | -0/+11 |
| | | | | | | | Passing a unicode filename to tarfile.open() along with mode "w|gz" failed with a UnicodeError because the filename was not encoded properly before being written to the gzipped stream in the FNAME extra field. | ||||
| * | Use context managers in test_ssl to simplify test writing. | Antoine Pitrou | 2011-12-21 | 1 | -64/+38 |
| | | |||||
| * | Fix test_import failure when run multiple times. | Antoine Pitrou | 2011-12-21 | 1 | -1/+4 |
| | | | | | (2.7-only) | ||||
| * | Issue #1785: Fix inspect and pydoc with misbehaving descriptors. | Antoine Pitrou | 2011-12-21 | 4 | -32/+158 |
| | | | | | Also fixes issue #13581: `help(type)` wouldn't display anything. | ||||
| * | note the blinding speed of these functions | Benjamin Peterson | 2011-12-20 | 1 | -2/+2 |
| | | |||||
| * | Followup to issue #11867: Use socketpair(), since FreeBSD < 8 doesn't really | Charles-François Natali | 2011-12-20 | 1 | -11/+8 |
| | | | | | support multiprocessing.Event. | ||||
| * | don't mention implementation detail | Benjamin Peterson | 2011-12-19 | 1 | -5/+5 |
| | | |||||
| * | Issue #13453: Try to increase some socket timeouts to make some buildbots stop | Charles-François Natali | 2011-12-19 | 2 | -2/+2 |
| | | | | | failing. | ||||
| * | Issue #13628: python-gdb.py is now able to retrieve more frames in the Python | Victor Stinner | 2011-12-19 | 3 | -18/+61 |
| | | | | | | | | | | | | | | traceback if Python is optimized. * delay the lookup of the size_t type, it is not available at startup * The second argument of the PyFrameObjectPtr constructor is optional, as done in other constructors * iter_builtins() and iter_globals() methods of PyFrameObjectPtr returns an empty tuple instead of None if Python is optimized * Fix py-bt to handle correctly "optimized" frames * Frame.get_pyop() tries to get the frame pointer from PyEval_EvalCodeEx() if the pointer is optimized out in PyEval_EvalFrameEx() | ||||
| * | Issue #11867: Make test_mailbox.test_lock_conflict deterministic (and fix a | Charles-François Natali | 2011-12-19 | 1 | -13/+27 |
| | | | | | race condition). | ||||
| * | #13576: add tests about the handling of (possibly broken) condcoms. | Ezio Melotti | 2011-12-19 | 2 | -0/+46 |
| | | |||||
| * | s/:c:type:/:ctype:/g | Ezio Melotti | 2011-12-19 | 1 | -3/+3 |
| | | |||||
