| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | #14984: On POSIX, enforce permissions when reading default .netrc. | R David Murray | 2013-09-18 | 1 | -0/+8 |
| | | | | | | | | | Initial patch by Bruno Piguet. This is implemented as if a useful .netrc file could exist without passwords, which is possible in the general case; but in fact our netrc implementation does not support it. Fixing that issue will be an enhancement. | ||||
| * | Issue #13703: add a way to randomize the hash values of basic types (str, ↵ | Georg Brandl | 2012-02-20 | 1 | -0/+4 |
| | | | | | | | | | | bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior. | ||||
| * | Remove mentions of previous license in profile module docs (#12417 followup). | Éric Araujo | 2011-07-28 | 1 | -25/+1 |
| | | | | | Also remove an extra docstring. | ||||
| * | Issue #12228: Fix exchanged flag descriptions in stat.rst. Thanks Sandro Tosi. | Mark Dickinson | 2011-06-25 | 1 | -2/+2 |
| | | |||||
| * | Fix closes issue12261 - Minor documention changes in the urllib.parse.rst | Senthil Kumaran | 2011-06-19 | 1 | -2/+2 |
| | | |||||
| * | Don’t misuse “package data” in pprint example | Éric Araujo | 2011-05-29 | 1 | -3/+3 |
| | | |||||
| * | Minor doc addition for clarity | Éric Araujo | 2011-05-27 | 1 | -1/+1 |
| | | |||||
| * | this should actually be an IOError | Benjamin Peterson | 2011-05-20 | 1 | -1/+1 |
| | | |||||
| * | add example for not using access | Benjamin Peterson | 2011-05-20 | 1 | -1/+20 |
| | | |||||
| * | pprint usage example rethought. | Łukasz Langa | 2011-05-14 | 1 | -30/+99 |
| | | |||||
| * | Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional | Victor Stinner | 2011-05-09 | 1 | -0/+3 |
| | | | | | | | | OpenSSL is now compiled with OPENSSL_NO_SSL2 defined (without the SSLv2 protocol) on Debian: fix the ssl module on Debian Testing and Debian Sid. Optimize also ssl.get_protocol_name(): speed does matter! | ||||
| * | Stop trying to use _xmlplus in the xml module. Closes #11164. | Martin v. Löwis | 2011-05-09 | 3 | -15/+3 |
| | | | | | Patch by Arfrever Frehtes Taifersar Arahesis. | ||||
| * | Add a note to the str.find doc to suggest the use of the "in" operator. | Ezio Melotti | 2011-05-09 | 1 | -0/+9 |
| | | |||||
| * | #11985: document the return value of platform.python_implementation for PyPy. | Ezio Melotti | 2011-05-03 | 1 | -1/+1 |
| | | |||||
| * | Add missing colon | Éric Araujo | 2011-05-02 | 1 | -1/+1 |
| | | |||||
| * | Fix spelling. | Raymond Hettinger | 2011-05-02 | 1 | -1/+1 |
| | | |||||
| * | Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a | Victor Stinner | 2011-05-01 | 1 | -0/+4 |
| | | | | | mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso. | ||||
| * | note abcs of int and float (closes #11977) | Benjamin Peterson | 2011-05-01 | 1 | -3/+7 |
| | | |||||
| * | #11901: post-commit review fixes per Georg Brandl | R David Murray | 2011-04-30 | 1 | -7/+7 |
| | | |||||
| * | whitespace... | Brian Curtin | 2011-04-30 | 1 | -3/+3 |
| | | |||||
| * | Fix #11961. Document STARTUPINFO and creation flag options. | Brian Curtin | 2011-04-30 | 1 | -3/+98 |
| | | |||||
| * | #11952: Fix typo in multiprocessing doc. | Ezio Melotti | 2011-04-29 | 1 | -1/+1 |
| | | |||||
| * | Branch merge | Éric Araujo | 2011-04-27 | 5 | -7/+7 |
| |\ | |||||
| | * | Change markup so it generates a link | Éric Araujo | 2011-04-27 | 2 | -3/+3 |
| | | | |||||
| | * | Change markup so that it creates a link | Éric Araujo | 2011-04-25 | 1 | -1/+1 |
| | | | |||||
| | * | Branch merge | Éric Araujo | 2011-04-24 | 2 | -3/+3 |
| | |\ | |||||
| | | * | Add a space to make json doc a bit more readable | Éric Araujo | 2011-04-21 | 1 | -1/+1 |
| | | | | |||||
| | | * | Fix argument name in reST doc to match the code | Éric Araujo | 2011-04-20 | 1 | -2/+2 |
| | | | | |||||
| * | | | #11901: add description of how bitfields are laid out to hexversion docs | R David Murray | 2011-04-25 | 1 | -0/+23 |
| |/ / | | | | | | | Patch by Sijin Joseph. | ||||
| * | | Fix wrong number of functions noticed by Sandro Tosi. | Ezio Melotti | 2011-04-19 | 1 | -1/+1 |
| |/ | |||||
| * | Small wording fix. | Georg Brandl | 2011-04-16 | 1 | -3/+4 |
| | | |||||
| * | Issue #11855: Apply missing formatting for urlretrieve | Eli Bendersky | 2011-04-16 | 1 | -5/+5 |
| | | |||||
| * | Add another example to the collections module docs. | Raymond Hettinger | 2011-04-16 | 1 | -0/+20 |
| | | |||||
| * | #4783: document that is not possible to use json.dump twice on the same stream. | Ezio Melotti | 2011-04-15 | 1 | -0/+5 |
| | | |||||
| * | Issue #11827: remove mention of list2cmdline in the doc of subprocess | Eli Bendersky | 2011-04-15 | 1 | -6/+37 |
| | | |||||
| * | #9101: backport json reference in configparser doc. | Ezio Melotti | 2011-04-14 | 1 | -0/+10 |
| | | |||||
| * | Fix wording and clarify that the IDNA codec operates on full domain names. | R David Murray | 2011-04-13 | 1 | -2/+8 |
| | | | | | | Before reading the code to check, I wasn't sure if it operated on full domain names or just individual labels. | ||||
| * | #10019: Fix regression relative to 2.6: add newlines if indent=0 | R David Murray | 2011-04-13 | 1 | -3/+3 |
| | | | | | Patch by Amaury Forgeot d'Arc, updated by Sando Tosi. | ||||
| * | Fix typo noticed by Sandro Tosi. | Ezio Melotti | 2011-04-03 | 1 | -1/+1 |
| | | |||||
| * | Merge issue 11662. | Guido van Rossum | 2011-03-29 | 1 | -0/+4 |
| |\ | |||||
| | * | Issue 11662: Fix vulnerability in urllib/urllib2. | guido@google.com | 2011-03-29 | 1 | -0/+4 |
| | | | | | | | | | (This version is a cleaned-up backport of a fix by Senthil Kumaran.) | ||||
| * | | #10617: add class directives to collections ABCs. | Ezio Melotti | 2011-03-28 | 1 | -8/+50 |
| | | | |||||
| * | | Tweaks to sys.flags description table. | Éric Araujo | 2011-03-25 | 1 | -25/+15 |
| | | | | | | | | | | | | | The options listed in the table are now links to their documentation, and the table uses compact markup to make it easier to read and edit. First proposed in #10998. | ||||
| * | | Use universal construct os.path.expanduser('~') instead of os.environ['HOME'] | Éric Araujo | 2011-03-25 | 2 | -2/+2 |
| |/ | |||||
| * | Issue #10610: Document that int(), float(), and complex() accept numeric ↵ | Raymond Hettinger | 2011-03-23 | 1 | -40/+46 |
| | | | | | literals with the Nd property. | ||||
| * | Issue #11625: Fix Typo | Raymond Hettinger | 2011-03-22 | 1 | -1/+2 |
| | | |||||
| * | Fix duplicate word. | Georg Brandl | 2011-03-21 | 1 | -1/+1 |
| | | |||||
| * | Fix typo in class name | Éric Araujo | 2011-03-20 | 1 | -1/+1 |
| | | |||||
| * | Markup fixes for #7198 patch. | R David Murray | 2011-03-20 | 1 | -3/+3 |
| | | |||||
| * | #7198: really add newline='' to csv.writer docs. | R David Murray | 2011-03-20 | 1 | -10/+11 |
| | | | | | | | Changeset ab27f16f707a was messed up by a rebase (as were 959f666470cc and 9d1b1a95bc8f) and the patch only got applied to default. | ||||
