]> git.ipfire.org Git - thirdparty/tornado.git/shortlog
thirdparty/tornado.git
2015-03-24  A. Jesse Jiryu... Add PriorityQueue and LifoQueue. 1394/head
2015-03-24  A. Jesse Jiryu... Redundant sentence.
2015-03-20  Ben DarnellGuard against messages containing % signs in web.HTTPError.
2015-03-20  Ben DarnellFinish incomplete sentence in docstring.
2015-03-17  Ben DarnellMerge pull request #1381 from ajdavis/locks-cancel...
2015-03-17  Ben DarnellMerge pull request #1382 from mgenti/appengine-fix
2015-03-16  Mark GuagentiAPPENGINE_RUNTIME should be checked before nt 1382/head
2015-03-16  A. Jesse Jiryu... Cancel timeouts in Condition.wait and Semaphore.acquire. 1381/head
2015-03-16  Ben DarnellMerge pull request #1380 from ajdavis/queues
2015-03-16  A. Jesse Jiryu... Cancel timeouts if Queue.get or put are resolved first. 1380/head
2015-03-16  A. Jesse Jiryu... Unused import.
2015-03-15  A. Jesse Jiryu... Factor put with put_nowait, and get with get_nowait.
2015-03-15  A. Jesse Jiryu... put() doesn't defer unblocking get().
2015-03-15  A. Jesse Jiryu... Add tornado.queues.
2015-03-14  Ben DarnellMake some tests less dependent on implementation details
2015-03-14  Ben DarnellMark some tests as requiring HTTP/1.x
2015-03-14  Ben DarnellWSGIContainer now uses HTTPConnection to write its...
2015-03-13  Ben DarnellAlso make certifi optional on app engine.
2015-03-13  Ben DarnellMerge pull request #1379 from mgenti/appengine-fix
2015-03-13  Mark GuagentiGAE does not have the ssl module so we can't access... 1379/head
2015-03-12  Ben DarnellMerge pull request #1376 from rutsky/patch-1
2015-03-12  Vladimir Rutskyfix typo: "javscript" 1376/head
2015-03-11  Ben DarnellMerge pull request #1375 from rutsky/patch-1
2015-03-11  Vladimir Rutskyfix typo: "initalization" 1375/head
2015-03-10  Ben DarnellMerge pull request #1373 from daftshady/patch
2015-03-09  daftshadytemporarily fixed double slash redirect issue 1373/head
2015-03-09  Ben Darnellsimple_httpclient: finish() should be called even for...
2015-03-09  Ben DarnellRemove a special case that avoided using curl in tests...
2015-03-09  Ben DarnellAdd a couple of private subclsasing hooks in simple_htt...
2015-03-08  Ben DarnellMake HTTPServer Configurable.
2015-03-08  Ben DarnellSupport positional arguments to Configurable.initialize.
2015-03-08  Ben DarnellMake _request_summary handle remote_ip of None.
2015-03-08  Ben DarnellImprove logging when _handle_request_exception fails.
2015-03-08  Ben DarnellAdd @wsgi_safe decorator to a couple of web tests.
2015-03-08  Ben DarnellAllow TCPServer.handle_stream to be a coroutine
2015-03-08  Ben DarnellAdd SSLIOStream.wait_for_handshake.
2015-03-07  Ben DarnellMerge pull request #1371 from ysimonson/feature/get...
2015-03-07  Yusuf SimonsonPrevent bad calls to get_arguments with a presumed... 1371/head
2015-03-06  Ben DarnellMerge pull request #1274 from daftshady/etag
2015-03-05  daftshadyremoved newline 1274/head
2015-03-05  daftshadyadded etag tests to web_test
2015-03-05  daftshadyfixed bytes error in `check_etag_header` so that it...
2015-03-05  daftshadyadded etag testcases to red_test
2015-03-05  daftshadyuse weak comparison function when comparing entity...
2015-03-05  daftshadyhandle multiple etags with regex
2015-03-05  daftshadycomment typo
2015-03-05  daftshadycorrectly parse If-None-Match header
2015-03-05  Ben DarnellCount SSL_ERROR_EOF as a kind of connection reset.
2015-03-05  Ben DarnellFix raise_error=False in synchronous HTTPClient.
2015-03-05  Ben DarnellFix an error in autoreload on windows.
2015-03-04  Ben DarnellMerge branch 'branch4.1'
2015-03-04  Ben DarnellAdd an FAQ page. branch4.1
2015-03-04  Ben DarnellFix the doc build.
2015-03-04  Ben DarnellFix the doc build.
2015-03-04  Ben DarnellMerge pull request #1366 from ajdavis/semaphore-garbage...
2015-03-03  A. Jesse Jiryu... Clean up timed-out waiters in Semaphore. 1366/head
2015-03-01  Ben DarnellRemove some debugging code that was accidentally committed.
2015-02-28  Ben DarnellMerge pull request #1356 from ajdavis/semaphore-memleak
2015-02-28  Ben DarnellMerge pull request #1353 from ajdavis/lock
2015-02-28  A. Jesse Jiryu... Fix memory leak in Semaphore. 1356/head
2015-02-28  A. Jesse Jiryu... Restore LockTests.test_acquire_fifo. 1353/head
2015-02-28  A. Jesse Jiryu... Don't promise that coroutines waiting for a Lock are...
2015-02-28  Ben DarnellMerge pull request #1355 from ajdavis/locks-repr
2015-02-28  Ben DarnellMerge pull request #1354 from ajdavis/bounded-semaphore...
2015-02-28  A. Jesse Jiryu... Define Condition's and Event's repr, not str. 1355/head
2015-02-28  A. Jesse Jiryu... Add docstring to BoundedSemaphore.release. 1354/head
2015-02-28  A. Jesse Jiryu... Add tornado.locks.Lock.
2015-02-27  Ben DarnellMerge pull request #1352 from ajdavis/bounded-semaphore
2015-02-27  A. Jesse Jiryu... Add tornado.locks.BoundedSemaphore. 1352/head
2015-02-26  Ben DarnellMerge pull request #1346 from ajdavis/semaphore
2015-02-25  A. Jesse Jiryu... More tests of Semaphore, timeout, and with-statement. 1346/head
2015-02-25  A. Jesse Jiryu... Remove Semaphore.io_loop.
2015-02-25  A. Jesse Jiryu... Remove public APIs Semaphore.counter and locked().
2015-02-25  A. Jesse Jiryu... Simpler code for Semaphore.acquire() as a context manager.
2015-02-25  Ben DarnellMerge pull request #1349 from st4lk/pgettext_ns
2015-02-24  st4lkdon't show pgettext en language warning 1349/head
2015-02-24  st4lkadd pgettext to default template namespace
2015-02-23  Ben DarnellMerge pull request #1348 from st4lk/locale_doc_fix
2015-02-23  st4lkFix doc typos (pgettext) 1348/head
2015-02-22  Ben DarnellMerge pull request #1317 from st4lk/locale_context 1347/head
2015-02-21  Ben DarnellExpand PeriodicCallback docs and testing.
2015-02-20  Ben DarnellMerge pull request #1344 from ajdavis/event-cleanups
2015-02-20  A. Jesse Jiryu... Be explicit: Event.wait raises tornado.gen.TimeoutError. 1344/head
2015-02-20  A. Jesse Jiryu... Add tornado.locks.Semaphore.
2015-02-20  A. Jesse Jiryu... Rename TestEvent to EventTest.
2015-02-20  A. Jesse Jiryu... Simpler markup in Event.wait docstring.
2015-02-20  Ben DarnellMerge pull request #1343 from browning/httpclient-excep...
2015-02-20  Brian BrowningFix simple typo in httpclient exception message 1343/head
2015-02-18  Ben DarnellRemove long-forgotten (and overly pessimistic) README.
2015-02-18  Ben DarnellFix web_test for python 3.5a1.
2015-02-18  Ben DarnellFix SSLIOStream in Python 3.5a1.
2015-02-18  Ben DarnellMerge pull request #1341 from ajdavis/event
2015-02-18  A. Jesse Jiryu... Import unittest2 in locks_test if needed. 1341/head
2015-02-18  A. Jesse Jiryu... Fix multiple calls to Event.clear.
2015-02-18  Ben DarnellMake "certifi" optional on py34.
2015-02-18  Ben DarnellStart next-release notes
2015-02-18  Ben DarnellBind options argument in define_logging_options.
2015-02-17  A. Jesse Jiryu... Combine lock tests into locks_test.py
2015-02-17  A. Jesse Jiryu... Event.wait raises TimeoutError instead of returning...
2015-02-17  A. Jesse Jiryu... Event.io_loop is unused.
next